summaryrefslogtreecommitdiffstats
path: root/application/themes/DarkTheme.h
diff options
context:
space:
mode:
Diffstat (limited to 'application/themes/DarkTheme.h')
-rw-r--r--application/themes/DarkTheme.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/application/themes/DarkTheme.h b/application/themes/DarkTheme.h
new file mode 100644
index 00000000..11e621a6
--- /dev/null
+++ b/application/themes/DarkTheme.h
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "ITheme.h"
+
+class DarkTheme: public ITheme
+{
+public:
+ virtual ~DarkTheme() {}
+
+ QString id() override;
+ QString name() override;
+ QString appStyleSheet() override;
+ QPalette colorScheme() override;
+};