feat(control center): adjust background color

pull/18/head
kate 4 years ago
parent f72b2beaf9
commit 8787990fc0

@ -207,9 +207,9 @@ ControlCenterDialog {
Rectangle {
anchors.fill: parent
color: FishUI.Theme.darkMode ? "#AEAEAE" : "white"
color: "white"
radius: FishUI.Theme.bigRadius
opacity: 0.7
opacity: FishUI.Theme.darkMode ? 0.2 : 0.7
}
GridLayout {
@ -301,9 +301,9 @@ ControlCenterDialog {
Rectangle {
id: brightnessItemBg
anchors.fill: parent
color: FishUI.Theme.darkMode ? "#AEAEAE" : "white"
color: "white"
radius: FishUI.Theme.bigRadius
opacity: 0.8
opacity: FishUI.Theme.darkMode ? 0.2 : 0.7
}
RowLayout {
@ -358,9 +358,9 @@ ControlCenterDialog {
Rectangle {
id: volumeItemBg
anchors.fill: parent
color: FishUI.Theme.darkMode ? "#AEAEAE" : "white"
color: "white"
radius: FishUI.Theme.bigRadius
opacity: 0.8
opacity: FishUI.Theme.darkMode ? 0.2 : 0.7
}
RowLayout {

@ -60,9 +60,9 @@ Item {
Rectangle {
anchors.fill: parent
color: FishUI.Theme.darkMode ? "#AEAEAE" : "white"
color: "white"
radius: FishUI.Theme.bigRadius
opacity: 0.8
opacity: FishUI.Theme.darkMode ? 0.2 : 0.7
}
RowLayout {

Loading…
Cancel
Save