aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/themes
diff options
context:
space:
mode:
authorflow <flowlnlnln@gmail.com>2022-07-18 14:20:06 -0300
committerflow <flowlnlnln@gmail.com>2022-07-18 14:25:00 -0300
commit0cb47cf7d77de4a1f0e440547818248c2586c581 (patch)
treea84cc2bab81b18a615383902f5f0edbaad3e70d7 /launcher/ui/themes
parentdec81c4f274dd8388d442062cf9fa18600aa850d (diff)
downloadPrismLauncher-0cb47cf7d77de4a1f0e440547818248c2586c581.tar.gz
PrismLauncher-0cb47cf7d77de4a1f0e440547818248c2586c581.tar.bz2
PrismLauncher-0cb47cf7d77de4a1f0e440547818248c2586c581.zip
fix: dark placeholder text in dark background on dark theme
Signed-off-by: flow <flowlnlnln@gmail.com>
Diffstat (limited to 'launcher/ui/themes')
-rw-r--r--launcher/ui/themes/DarkTheme.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/launcher/ui/themes/DarkTheme.cpp b/launcher/ui/themes/DarkTheme.cpp
index 31ecd559..712a9d3e 100644
--- a/launcher/ui/themes/DarkTheme.cpp
+++ b/launcher/ui/themes/DarkTheme.cpp
@@ -31,6 +31,7 @@ QPalette DarkTheme::colorScheme()
darkPalette.setColor(QPalette::Link, QColor(42, 130, 218));
darkPalette.setColor(QPalette::Highlight, QColor(42, 130, 218));
darkPalette.setColor(QPalette::HighlightedText, Qt::black);
+ darkPalette.setColor(QPalette::PlaceholderText, Qt::darkGray);
return fadeInactive(darkPalette, fadeAmount(), fadeColor());
}