mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-05-09 02:54:40 +02:00
15 lines
213 B
C++
15 lines
213 B
C++
#pragma once
|
|
|
|
#include "ITheme.h"
|
|
|
|
class FusionTheme: public ITheme
|
|
{
|
|
public:
|
|
virtual ~FusionTheme() {}
|
|
|
|
QString qtTheme() override;
|
|
|
|
protected:
|
|
QPalette fadeInactive(QPalette in, qreal bias, QColor color);
|
|
};
|