NOISSUE add bright theme to complement the dark theme

Same style, different colors.
This commit is contained in:
Petr Mrázek
2016-11-01 08:50:23 +01:00
parent fe68d59460
commit 2e0a45cc2f
4 changed files with 63 additions and 0 deletions

View File

@ -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;
};