From 2e0a45cc2f7b3b3b84d72905bb4217bc1cffbf85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Tue, 1 Nov 2016 08:50:23 +0100 Subject: NOISSUE add bright theme to complement the dark theme Same style, different colors. --- application/themes/BrightTheme.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 application/themes/BrightTheme.h (limited to 'application/themes/BrightTheme.h') diff --git a/application/themes/BrightTheme.h b/application/themes/BrightTheme.h new file mode 100644 index 00000000..e7e0f834 --- /dev/null +++ b/application/themes/BrightTheme.h @@ -0,0 +1,16 @@ +#pragma once + +#include "ITheme.h" + +class BrightTheme: public ITheme +{ +public: + virtual ~BrightTheme() {} + + QString qtTheme() override; + QString id() override; + QString name() override; + QString appStyleSheet() override; + QPalette colorScheme() override; +}; + -- cgit v1.2.3