PrismLauncher/launcher/ui/themes/DarkTheme.h
Sefa Eyeoglu 91ba4cf75e
chore: reformat
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2023-08-14 18:16:53 +02:00

18 lines
391 B
C++

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