fix: use softer greys for placeholders
This commit is contained in:
+1
-1
@@ -19,7 +19,7 @@ ApplicationWindow {
|
|||||||
light: Theme.secondaryText
|
light: Theme.secondaryText
|
||||||
highlight: Theme.highlight
|
highlight: Theme.highlight
|
||||||
highlightedText: Theme.secondaryBackground
|
highlightedText: Theme.secondaryBackground
|
||||||
placeholderText: Theme.muted
|
placeholderText: Theme.placeholderText
|
||||||
}
|
}
|
||||||
|
|
||||||
title: qsTr("Flowy")
|
title: qsTr("Flowy")
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ Item {
|
|||||||
property color caption: darkTheme ? "#EBEBF5" : "#3C3C43"
|
property color caption: darkTheme ? "#EBEBF5" : "#3C3C43"
|
||||||
property color separator: darkTheme ? "#38383A" : "#C6C6C8"
|
property color separator: darkTheme ? "#38383A" : "#C6C6C8"
|
||||||
property color highlight: darkTheme ? "#374151" : "#c6cbcc"
|
property color highlight: darkTheme ? "#374151" : "#c6cbcc"
|
||||||
|
property color placeholderText: darkTheme ? Qt.rgba(1, 1, 1, 0.4) : Qt.rgba(0, 0, 0, 0.4)
|
||||||
|
|
||||||
property int radius: 5
|
property int radius: 5
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user