From 20b9f2b42a3b58b6081af271774fbcc34025dccb Mon Sep 17 00:00:00 2001 From: Petr Mrázek Date: Sun, 25 Jul 2021 19:11:59 +0200 Subject: NOISSUE Flatten gui and logic libraries into MultiMC --- launcher/themes/BrightTheme.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 launcher/themes/BrightTheme.h (limited to 'launcher/themes/BrightTheme.h') diff --git a/launcher/themes/BrightTheme.h b/launcher/themes/BrightTheme.h new file mode 100644 index 00000000..c61f52d5 --- /dev/null +++ b/launcher/themes/BrightTheme.h @@ -0,0 +1,19 @@ +#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; +}; + -- cgit