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

#include "ITheme.h"

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

	QString qtTheme() override;

protected:
	QPalette fadeInactive(QPalette in, qreal bias, QColor color);
};