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

#include "FusionTheme.h"

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

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