matrixion/src/ui/Theme.cpp

75 lines
3.2 KiB
C++
Raw Normal View History

2021-03-05 02:35:15 +03:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
2017-04-06 02:06:42 +03:00
#include "Theme.h"
2021-05-15 00:35:34 +03:00
Q_DECLARE_METATYPE(Theme)
2017-04-06 02:06:42 +03:00
2021-05-15 00:35:34 +03:00
QPalette
Theme::paletteFromTheme(std::string_view theme)
2017-04-06 02:06:42 +03:00
{
2021-05-15 00:35:34 +03:00
[[maybe_unused]] static auto meta = qRegisterMetaType<Theme>("Theme");
static QPalette original;
if (theme == "light") {
QPalette lightActive(
/*windowText*/ QColor("#333"),
/*button*/ QColor("white"),
/*light*/ QColor(0xef, 0xef, 0xef),
2021-05-21 22:19:03 +03:00
/*dark*/ QColor(70, 77, 93),
2021-05-15 00:35:34 +03:00
/*mid*/ QColor(220, 220, 220),
/*text*/ QColor("#333"),
2021-05-21 22:19:03 +03:00
/*bright_text*/ QColor("#f2f5f8"),
2021-05-15 00:35:34 +03:00
/*base*/ QColor("#fff"),
/*window*/ QColor("white"));
lightActive.setColor(QPalette::AlternateBase, QColor("#eee"));
lightActive.setColor(QPalette::Highlight, QColor("#38a3d8"));
2021-05-21 22:19:03 +03:00
lightActive.setColor(QPalette::HighlightedText, QColor("#f4f4f5"));
2021-05-15 00:35:34 +03:00
lightActive.setColor(QPalette::ToolTipBase, lightActive.base().color());
lightActive.setColor(QPalette::ToolTipText, lightActive.text().color());
lightActive.setColor(QPalette::Link, QColor("#0077b5"));
lightActive.setColor(QPalette::ButtonText, QColor("#555459"));
return lightActive;
} else if (theme == "dark") {
QPalette darkActive(
/*windowText*/ QColor("#caccd1"),
/*button*/ QColor(0xff, 0xff, 0xff),
/*light*/ QColor("#caccd1"),
2021-05-21 22:19:03 +03:00
/*dark*/ QColor(60, 70, 77),
2021-05-15 00:35:34 +03:00
/*mid*/ QColor("#202228"),
/*text*/ QColor("#caccd1"),
2021-05-21 22:19:03 +03:00
/*bright_text*/ QColor("#f4f5f8"),
2021-05-15 00:35:34 +03:00
/*base*/ QColor("#202228"),
/*window*/ QColor("#2d3139"));
darkActive.setColor(QPalette::AlternateBase, QColor("#2d3139"));
darkActive.setColor(QPalette::Highlight, QColor("#38a3d8"));
2021-05-21 22:19:03 +03:00
darkActive.setColor(QPalette::HighlightedText, QColor("#f4f5f8"));
2021-05-15 00:35:34 +03:00
darkActive.setColor(QPalette::ToolTipBase, darkActive.base().color());
darkActive.setColor(QPalette::ToolTipText, darkActive.text().color());
darkActive.setColor(QPalette::Link, QColor("#38a3d8"));
darkActive.setColor(QPalette::ButtonText, "#828284");
2021-05-15 00:35:34 +03:00
return darkActive;
} else {
return original;
2017-09-10 12:59:21 +03:00
}
2017-04-06 02:06:42 +03:00
}
2021-05-15 00:35:34 +03:00
Theme::Theme(std::string_view theme)
2017-04-06 02:06:42 +03:00
{
2021-05-15 00:35:34 +03:00
auto p = paletteFromTheme(theme);
separator_ = p.mid().color();
if (theme == "light") {
sidebarBackground_ = QColor("#233649");
2021-05-24 15:04:07 +03:00
alternateButton_ = QColor("#ccc");
2021-05-21 22:19:03 +03:00
red_ = QColor("#a82353");
2021-05-15 00:35:34 +03:00
} else if (theme == "dark") {
sidebarBackground_ = QColor("#2d3139");
2021-05-24 15:04:07 +03:00
alternateButton_ = QColor("#414A59");
2021-05-21 22:19:03 +03:00
red_ = QColor("#a82353");
2021-05-15 00:35:34 +03:00
} else {
sidebarBackground_ = p.window().color();
2021-05-24 15:04:07 +03:00
alternateButton_ = p.dark().color();
2021-05-21 22:19:03 +03:00
red_ = QColor("red");
2021-05-15 00:35:34 +03:00
}
2017-04-06 02:06:42 +03:00
}