summary refs log tree commit diff
path: root/src/ui/Theme.cpp
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-05-21 21:19:03 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-05-21 21:19:03 +0200
commitcd67046f6011f0838b5ed4621fb3ee9b846e63a0 (patch)
tree91ea6ecd1273b69b97717076ec9387ddea6936da /src/ui/Theme.cpp
parentSome basic room list (diff)
downloadnheko-cd67046f6011f0838b5ed4621fb3ee9b846e63a0.tar.xz
Make roomlist look nice
Diffstat (limited to 'src/ui/Theme.cpp')
-rw-r--r--src/ui/Theme.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/ui/Theme.cpp b/src/ui/Theme.cpp

index ca2a4ce0..b6c9579a 100644 --- a/src/ui/Theme.cpp +++ b/src/ui/Theme.cpp
@@ -16,14 +16,15 @@ Theme::paletteFromTheme(std::string_view theme) /*windowText*/ QColor("#333"), /*button*/ QColor("white"), /*light*/ QColor(0xef, 0xef, 0xef), - /*dark*/ QColor(110, 110, 110), + /*dark*/ QColor(70, 77, 93), /*mid*/ QColor(220, 220, 220), /*text*/ QColor("#333"), - /*bright_text*/ QColor("#333"), + /*bright_text*/ QColor("#f2f5f8"), /*base*/ QColor("#fff"), /*window*/ QColor("white")); lightActive.setColor(QPalette::AlternateBase, QColor("#eee")); lightActive.setColor(QPalette::Highlight, QColor("#38a3d8")); + lightActive.setColor(QPalette::HighlightedText, QColor("#f4f4f5")); lightActive.setColor(QPalette::ToolTipBase, lightActive.base().color()); lightActive.setColor(QPalette::ToolTipText, lightActive.text().color()); lightActive.setColor(QPalette::Link, QColor("#0077b5")); @@ -34,14 +35,15 @@ Theme::paletteFromTheme(std::string_view theme) /*windowText*/ QColor("#caccd1"), /*button*/ QColor(0xff, 0xff, 0xff), /*light*/ QColor("#caccd1"), - /*dark*/ QColor(110, 110, 110), + /*dark*/ QColor(60, 70, 77), /*mid*/ QColor("#202228"), /*text*/ QColor("#caccd1"), - /*bright_text*/ QColor(0xff, 0xff, 0xff), + /*bright_text*/ QColor("#f4f5f8"), /*base*/ QColor("#202228"), /*window*/ QColor("#2d3139")); darkActive.setColor(QPalette::AlternateBase, QColor("#2d3139")); darkActive.setColor(QPalette::Highlight, QColor("#38a3d8")); + darkActive.setColor(QPalette::HighlightedText, QColor("#f4f5f8")); darkActive.setColor(QPalette::ToolTipBase, darkActive.base().color()); darkActive.setColor(QPalette::ToolTipText, darkActive.text().color()); darkActive.setColor(QPalette::Link, QColor("#38a3d8")); @@ -58,9 +60,12 @@ Theme::Theme(std::string_view theme) separator_ = p.mid().color(); if (theme == "light") { sidebarBackground_ = QColor("#233649"); + red_ = QColor("#a82353"); } else if (theme == "dark") { sidebarBackground_ = QColor("#2d3139"); + red_ = QColor("#a82353"); } else { sidebarBackground_ = p.window().color(); + red_ = QColor("red"); } }