summaryrefslogtreecommitdiffstats
path: root/application/themes/FusionTheme.h
diff options
context:
space:
mode:
Diffstat (limited to 'application/themes/FusionTheme.h')
-rw-r--r--application/themes/FusionTheme.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/application/themes/FusionTheme.h b/application/themes/FusionTheme.h
new file mode 100644
index 00000000..2f938eb9
--- /dev/null
+++ b/application/themes/FusionTheme.h
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "ITheme.h"
+
+class FusionTheme: public ITheme
+{
+public:
+ virtual ~FusionTheme() {}
+
+ QString qtTheme() override;
+
+protected:
+ QPalette fadeInactive(QPalette in, qreal bias, QColor color);
+};