2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
2022-01-01 06:57:53 +03:00
|
|
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
2023-01-02 06:25:33 +03:00
|
|
|
// SPDX-FileCopyrightText: 2023 Nheko Contributors
|
2021-03-05 02:35:15 +03:00
|
|
|
//
|
|
|
|
// 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
|
2021-12-29 10:05:29 +03:00
|
|
|
Theme::paletteFromTheme(QStringView theme)
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
[[maybe_unused]] static auto meta = qRegisterMetaType<Theme>("Theme");
|
|
|
|
static QPalette original;
|
2021-12-29 10:05:29 +03:00
|
|
|
if (theme == u"light") {
|
2021-12-29 08:01:20 +03:00
|
|
|
static QPalette lightActive = [] {
|
|
|
|
QPalette lightActive(
|
|
|
|
/*windowText*/ QColor(0x33, 0x33, 0x33),
|
|
|
|
/*button*/ QColor(Qt::GlobalColor::white),
|
|
|
|
/*light*/ QColor(0xef, 0xef, 0xef),
|
|
|
|
/*dark*/ QColor(70, 77, 93),
|
|
|
|
/*mid*/ QColor(220, 220, 220),
|
|
|
|
/*text*/ QColor(0x33, 0x33, 0x33),
|
|
|
|
/*bright_text*/ QColor(0xf2, 0xf5, 0xf8),
|
|
|
|
/*base*/ QColor(Qt::GlobalColor::white),
|
|
|
|
/*window*/ QColor(Qt::GlobalColor::white));
|
|
|
|
lightActive.setColor(QPalette::AlternateBase, QColor(0xee, 0xee, 0xee));
|
|
|
|
lightActive.setColor(QPalette::Highlight, QColor(0x38, 0xa3, 0xd8));
|
|
|
|
lightActive.setColor(QPalette::HighlightedText, QColor(0xf4, 0xf4, 0xf5));
|
|
|
|
lightActive.setColor(QPalette::ToolTipBase, lightActive.base().color());
|
|
|
|
lightActive.setColor(QPalette::ToolTipText, lightActive.text().color());
|
|
|
|
lightActive.setColor(QPalette::Link, QColor(0x00, 0x77, 0xb5));
|
|
|
|
lightActive.setColor(QPalette::ButtonText, QColor(0x55, 0x54, 0x59));
|
|
|
|
return lightActive;
|
|
|
|
}();
|
2021-09-18 01:22:33 +03:00
|
|
|
return lightActive;
|
2021-12-29 10:05:29 +03:00
|
|
|
} else if (theme == u"dark") {
|
2021-12-29 08:01:20 +03:00
|
|
|
static QPalette darkActive = [] {
|
|
|
|
QPalette darkActive(
|
|
|
|
/*windowText*/ QColor(0xca, 0xcc, 0xd1),
|
|
|
|
/*button*/ QColor(Qt::GlobalColor::white),
|
|
|
|
/*light*/ QColor(0xca, 0xcc, 0xd1),
|
|
|
|
/*dark*/ QColor(60, 70, 77),
|
|
|
|
/*mid*/ QColor(0x20, 0x22, 0x28),
|
|
|
|
/*text*/ QColor(0xca, 0xcc, 0xd1),
|
|
|
|
/*bright_text*/ QColor(0xf4, 0xf5, 0xf8),
|
|
|
|
/*base*/ QColor(0x20, 0x22, 0x28),
|
|
|
|
/*window*/ QColor(0x2d, 0x31, 0x39));
|
|
|
|
darkActive.setColor(QPalette::AlternateBase, QColor(0x2d, 0x31, 0x39));
|
|
|
|
darkActive.setColor(QPalette::Highlight, QColor(0x38, 0xa3, 0xd8));
|
|
|
|
darkActive.setColor(QPalette::HighlightedText, QColor(0xf4, 0xf5, 0xf8));
|
|
|
|
darkActive.setColor(QPalette::ToolTipBase, darkActive.base().color());
|
|
|
|
darkActive.setColor(QPalette::ToolTipText, darkActive.text().color());
|
|
|
|
darkActive.setColor(QPalette::Link, QColor(0x38, 0xa3, 0xd8));
|
|
|
|
darkActive.setColor(QPalette::ButtonText, QColor(0x82, 0x82, 0x84));
|
|
|
|
return darkActive;
|
|
|
|
}();
|
2021-09-18 01:22:33 +03:00
|
|
|
return darkActive;
|
|
|
|
} else {
|
|
|
|
return original;
|
|
|
|
}
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2021-12-29 10:05:29 +03:00
|
|
|
Theme::Theme(QStringView theme)
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
auto p = paletteFromTheme(theme);
|
|
|
|
separator_ = p.mid().color();
|
2021-12-29 10:05:29 +03:00
|
|
|
if (theme == u"light") {
|
2021-12-29 00:30:12 +03:00
|
|
|
sidebarBackground_ = QColor(0x23, 0x36, 0x49);
|
|
|
|
alternateButton_ = QColor(0xcc, 0xcc, 0xcc);
|
|
|
|
red_ = QColor(0xa8, 0x23, 0x53);
|
2022-10-02 00:57:02 +03:00
|
|
|
green_ = QColor(QColorConstants::Svg::green);
|
2021-12-29 00:30:12 +03:00
|
|
|
orange_ = QColor(0xfc, 0xbe, 0x05);
|
2022-10-01 17:30:20 +03:00
|
|
|
error_ = QColor(0xdd, 0x3d, 0x3d);
|
2021-12-29 10:05:29 +03:00
|
|
|
} else if (theme == u"dark") {
|
2021-12-29 00:30:12 +03:00
|
|
|
sidebarBackground_ = QColor(0x2d, 0x31, 0x39);
|
|
|
|
alternateButton_ = QColor(0x41, 0x4A, 0x59);
|
|
|
|
red_ = QColor(0xa8, 0x23, 0x53);
|
2022-10-02 00:57:02 +03:00
|
|
|
green_ = QColor(QColorConstants::Svg::green);
|
2021-12-29 00:30:12 +03:00
|
|
|
orange_ = QColor(0xfc, 0xc5, 0x3a);
|
2022-10-01 17:30:20 +03:00
|
|
|
error_ = QColor(0xdd, 0x3d, 0x3d);
|
2021-09-18 01:22:33 +03:00
|
|
|
} else {
|
|
|
|
sidebarBackground_ = p.window().color();
|
|
|
|
alternateButton_ = p.dark().color();
|
2022-10-02 00:57:02 +03:00
|
|
|
red_ = QColor(QColorConstants::Svg::red);
|
|
|
|
green_ = QColor(QColorConstants::Svg::green);
|
|
|
|
orange_ = QColor(QColorConstants::Svg::orange); // SVG orange
|
2022-10-01 17:30:20 +03:00
|
|
|
error_ = QColor(0xdd, 0x3d, 0x3d);
|
2021-09-18 01:22:33 +03:00
|
|
|
}
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|