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-24 14:04:07 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-05-24 14:04:07 +0200
commitc290b0747f34a6f683365f93d64ce93dc4428ca8 (patch)
treec53f337a2bb4ad6e1a439277f288119229ec99e8 /src/ui/Theme.cpp
parentReenable userInfo settings menu (diff)
downloadnheko-c290b0747f34a6f683365f93d64ce93dc4428ca8.tar.xz
Reenable invites
Diffstat (limited to 'src/ui/Theme.cpp')
-rw-r--r--src/ui/Theme.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui/Theme.cpp b/src/ui/Theme.cpp

index b6c9579a..26119393 100644 --- a/src/ui/Theme.cpp +++ b/src/ui/Theme.cpp
@@ -60,12 +60,15 @@ Theme::Theme(std::string_view theme) separator_ = p.mid().color(); if (theme == "light") { sidebarBackground_ = QColor("#233649"); + alternateButton_ = QColor("#ccc"); red_ = QColor("#a82353"); } else if (theme == "dark") { sidebarBackground_ = QColor("#2d3139"); + alternateButton_ = QColor("#414A59"); red_ = QColor("#a82353"); } else { sidebarBackground_ = p.window().color(); + alternateButton_ = p.dark().color(); red_ = QColor("red"); } }