fix(ui): use correct light theme color for app bar divider
This commit is contained in:
parent
f88241e689
commit
a954639cba
|
@ -14,7 +14,7 @@ Column {
|
|||
Rectangle {
|
||||
width: 40
|
||||
height: 1
|
||||
color: Style.current.border
|
||||
color: Style.current.appBarDividerColor
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
}
|
||||
|
||||
|
|
|
@ -32,6 +32,7 @@ Theme {
|
|||
property color tenPercentBlue: Qt.rgba(67, 96, 223, 0.1)
|
||||
|
||||
property color background: "#2C2C2C"
|
||||
property color appBarDividerColor: darkGrey
|
||||
property color border: darkGrey
|
||||
property color borderSecondary: tenPercentWhite
|
||||
property color borderTertiary: blue
|
||||
|
|
|
@ -32,6 +32,7 @@ Theme {
|
|||
property color tenPercentBlue: Qt.rgba(67, 96, 223, 0.1)
|
||||
|
||||
property color background: white
|
||||
property color appBarDividerColor: darkGrey
|
||||
property color border: grey
|
||||
property color borderSecondary: tenPercentBlack
|
||||
property color borderTertiary: blue
|
||||
|
|
Loading…
Reference in New Issue