pollymc/application/themes/BrightTheme.h
Petr Mrázek 2e0a45cc2f NOISSUE add bright theme to complement the dark theme
Same style, different colors.
2016-11-01 09:04:37 +01:00

17 lines
258 B
C++

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