summary refs log tree commit diff
path: root/src/ui/Theme.cpp
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-11-01 22:20:15 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2021-11-01 22:20:15 +0100
commit2aabe9dcacbef4f753761f6df840da4292561d11 (patch)
tree283b6ee93d7f3c9d4d670e4de08ccfad0bfb0160 /src/ui/Theme.cpp
parentSome people consider Nheko not an AAAAA title (diff)
downloadnheko-2aabe9dcacbef4f753761f6df840da4292561d11.tar.xz
Prompt user when there are unverified devices
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 d6f0b72f..d7c92fb8 100644 --- a/src/ui/Theme.cpp +++ b/src/ui/Theme.cpp
@@ -62,13 +62,16 @@ Theme::Theme(std::string_view theme) sidebarBackground_ = QColor("#233649"); alternateButton_ = QColor("#ccc"); red_ = QColor("#a82353"); + orange_ = QColor("#fcbe05"); } else if (theme == "dark") { sidebarBackground_ = QColor("#2d3139"); alternateButton_ = QColor("#414A59"); red_ = QColor("#a82353"); + orange_ = QColor("#fcc53a"); } else { sidebarBackground_ = p.window().color(); alternateButton_ = p.dark().color(); red_ = QColor("red"); + orange_ = QColor("orange"); } }