From 13b575f7a90ef97f3b30f2a2f74bd19d58d375e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Sat, 5 Nov 2016 15:51:51 +0100 Subject: GH-1711 fix inactive element shading in Dark and Bright themes --- application/themes/FusionTheme.cpp | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 application/themes/FusionTheme.cpp (limited to 'application/themes/FusionTheme.cpp') diff --git a/application/themes/FusionTheme.cpp b/application/themes/FusionTheme.cpp new file mode 100644 index 00000000..fa2ccf64 --- /dev/null +++ b/application/themes/FusionTheme.cpp @@ -0,0 +1,32 @@ +#include "FusionTheme.h" +#include "rainbow.h" + +QString FusionTheme::qtTheme() +{ + return "Fusion"; +} + +QPalette FusionTheme::fadeInactive(QPalette in, qreal bias, QColor color) +{ + auto blend = [&in, bias, color](QPalette::ColorRole role) + { + QColor from = in.color(QPalette::Active, role); + QColor blended = Rainbow::mix(from, color, bias); + in.setColor(QPalette::Disabled, role, blended); + }; + blend(QPalette::Window); + blend(QPalette::WindowText); + blend(QPalette::Base); + blend(QPalette::AlternateBase); + blend(QPalette::ToolTipBase); + blend(QPalette::ToolTipText); + blend(QPalette::Text); + blend(QPalette::Button); + blend(QPalette::ButtonText); + blend(QPalette::BrightText); + blend(QPalette::Link); + blend(QPalette::Highlight); + blend(QPalette::HighlightedText); + return in; +} + -- cgit v1.2.3