GH-903 simple theme switching and dark theme
This commit is contained in:
14
application/themes/DarkTheme.h
Normal file
14
application/themes/DarkTheme.h
Normal file
@ -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;
|
||||
};
|
Reference in New Issue
Block a user