Skip to content

Commit

Permalink
Add color for disabled labels
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBriza committed Oct 11, 2024
1 parent b95e12c commit 122395a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions modules/Lith/Core/colortheme.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ QPalette ColorTheme::palette() const {
palette.setBrush(QPalette::Highlight, QColor(0x8F, 0x24, 0x24));
palette.setBrush(QPalette::HighlightedText, QColor(0xED, 0xED, 0xED));
palette.setBrush(QPalette::AlternateBase, QColor(0xc7, 0xc3, 0x6d));
palette.setBrush(QPalette::Disabled, QPalette::WindowText, mix(text, window, 0.6));
palette.setBrush(QPalette::Disabled, QPalette::Text, mix(text, window, 0.6));
palette.setBrush(QPalette::Disabled, QPalette::Button, mix(button, window, 0.45));
return palette;
Expand Down

0 comments on commit 122395a

Please sign in to comment.