summaryrefslogtreecommitdiffstats
path: root/application/themes/BrightTheme.h
blob: e7e0f834f8700b2c33b7ad336efac2920c45534b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
};