PrismLauncher/launcher/ui/themes/BrightTheme.h
Sefa Eyeoglu 1d468ac35a
chore: reformat
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2023-08-02 18:35:35 +02:00

18 lines
395 B
C++

#pragma once
#include "FusionTheme.h"
class BrightTheme : public FusionTheme {
public:
virtual ~BrightTheme() {}
QString id() override;
QString name() override;
bool hasStyleSheet() override;
QString appStyleSheet() override;
bool hasColorScheme() override;
QPalette colorScheme() override;
double fadeAmount() override;
QColor fadeColor() override;
};