summaryrefslogtreecommitdiffstats
path: root/application/themes/DarkTheme.h
blob: 11e621a60d921bdc4b01c9c15623341ddde890d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "ITheme.h"

class DarkTheme: public ITheme
{
public:
	virtual ~DarkTheme() {}

	QString id() override;
	QString name() override;
	QString appStyleSheet() override;
	QPalette colorScheme() override;
};