Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/styles/StateColorPalette.cpp')
-rw-r--r--src/gui/styles/StateColorPalette.cpp57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/gui/styles/StateColorPalette.cpp b/src/gui/styles/StateColorPalette.cpp
new file mode 100644
index 000000000..c729e3269
--- /dev/null
+++ b/src/gui/styles/StateColorPalette.cpp
@@ -0,0 +1,57 @@
+/*
+ * Copyright (C) 2020 KeePassXC Team <team@keepassxc.org>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 or (at your option)
+ * version 3 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "StateColorPalette.h"
+
+#include "gui/Application.h"
+
+StateColorPalette::StateColorPalette()
+{
+ if (kpxcApp->isDarkTheme()) {
+ initDefaultPaletteDark();
+ } else {
+ initDefaultPaletteLight();
+ }
+}
+
+void StateColorPalette::initDefaultPaletteLight()
+{
+ setColor(ColorRole::Error, QStringLiteral("#FF7D7D"));
+ setColor(ColorRole::Warning, QStringLiteral("#FFD30F"));
+ setColor(ColorRole::Info, QStringLiteral("#84D0E1"));
+ setColor(ColorRole::Incomplete, QStringLiteral("#FFD30F"));
+
+ setColor(ColorRole::HealthCritical, QStringLiteral("#C43F31"));
+ setColor(ColorRole::HealthBad, QStringLiteral("#E07F16"));
+ setColor(ColorRole::HealthWeak, QStringLiteral("#FFD30F"));
+ setColor(ColorRole::HealthOk, QStringLiteral("#5EA10E"));
+ setColor(ColorRole::HealthExcellent, QStringLiteral("#118f17"));
+}
+
+void StateColorPalette::initDefaultPaletteDark()
+{
+ setColor(ColorRole::Error, QStringLiteral("#802D2D"));
+ setColor(ColorRole::Warning, QStringLiteral("#73682E"));
+ setColor(ColorRole::Info, QStringLiteral("#207183"));
+ setColor(ColorRole::Incomplete, QStringLiteral("#665124"));
+
+ setColor(ColorRole::HealthCritical, QStringLiteral("#C43F31"));
+ setColor(ColorRole::HealthBad, QStringLiteral("#DB9837"));
+ setColor(ColorRole::HealthWeak, QStringLiteral("#F0C400"));
+ setColor(ColorRole::HealthOk, QStringLiteral("#608A22"));
+ setColor(ColorRole::HealthExcellent, QStringLiteral("#1F8023"));
+}