feat(control center): adjust background color

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

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

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

Loading…
Cancel
Save