diff options
author | Trisave <42098407+Protrikk@users.noreply.github.com> | 2022-10-23 20:32:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-23 20:32:04 +0200 |
commit | d5109f024b7bde5862a60b7359d815dc3d138663 (patch) | |
tree | aada1ce725b6cf376dbb87b93cf9ead61b57edf1 | |
parent | 7f441f5b878677df0a1f12b62a132959402c6cd0 (diff) | |
download | PrismLauncher-d5109f024b7bde5862a60b7359d815dc3d138663.tar.gz PrismLauncher-d5109f024b7bde5862a60b7359d815dc3d138663.tar.bz2 PrismLauncher-d5109f024b7bde5862a60b7359d815dc3d138663.zip |
Better dark theme selection contrast
Tweak background of the selection background in order to make text more readable
Signed-off-by: Trisave <42098407+Protrikk@users.noreply.github.com>
-rw-r--r-- | launcher/ui/themes/DarkTheme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/themes/DarkTheme.cpp b/launcher/ui/themes/DarkTheme.cpp index 07a2efd2..48231b53 100644 --- a/launcher/ui/themes/DarkTheme.cpp +++ b/launcher/ui/themes/DarkTheme.cpp @@ -31,7 +31,7 @@ QPalette DarkTheme::colorScheme() darkPalette.setColor(QPalette::ButtonText, Qt::white); darkPalette.setColor(QPalette::BrightText, Qt::red); darkPalette.setColor(QPalette::Link, QColor(47,163,198)); - darkPalette.setColor(QPalette::Highlight, QColor(145,205,92)); + darkPalette.setColor(QPalette::Highlight, QColor(150,219,89)); darkPalette.setColor(QPalette::HighlightedText, Qt::black); darkPalette.setColor(QPalette::PlaceholderText, Qt::darkGray); return fadeInactive(darkPalette, fadeAmount(), fadeColor()); |