fix: use softer greys for placeholders

This commit is contained in:
talksik
2025-04-12 12:00:45 -07:00
parent 13a5936b37
commit b3c7f12439
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -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")
+1
View File
@@ -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