Fix background color

pull/11/head
cutefishd 5 years ago
parent 6fe17853bb
commit 8f64c601f8

@ -31,7 +31,7 @@ ItemPage {
ColumnLayout {
id: layout
anchors.fill: parent
spacing: FishUI.Units.largeSpacing
spacing: FishUI.Units.largeSpacing * 2
RoundedItem {
ListView {

@ -15,7 +15,8 @@ Item {
Rectangle {
anchors.fill: parent
color: FishUI.Theme.backgroundColor
color: FishUI.Theme.darkMode ? "#333333" : "#E5E5EB"
Behavior on color {
ColorAnimation {

@ -16,8 +16,7 @@ FishUI.Window {
minimumHeight: 600
headerBarHeight: 50
backgroundColor: FishUI.Theme.darkMode ? Qt.rgba(38 / 255, 38 / 255, 38 / 255, 255)
: Qt.rgba(237 / 255, 237 / 255, 242 / 255, 255)
backgroundColor: FishUI.Theme.darkMode ? "#262626" : "#F2F2F7"
headerBar: Item {
Rectangle {
@ -26,7 +25,7 @@ FishUI.Window {
anchors.top: parent.top
anchors.bottom: parent.bottom
implicitWidth: sideBar.width
color: FishUI.Theme.backgroundColor
color: FishUI.Theme.darkMode ? "#333333" : "#E5E5EB"
Behavior on color {
ColorAnimation {

Loading…
Cancel
Save