diff options
Diffstat (limited to 'application/themes/BrightTheme.cpp')
-rw-r--r-- | application/themes/BrightTheme.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/application/themes/BrightTheme.cpp b/application/themes/BrightTheme.cpp index a7cfa010..2763c982 100644 --- a/application/themes/BrightTheme.cpp +++ b/application/themes/BrightTheme.cpp @@ -10,6 +10,11 @@ QString BrightTheme::name() return QObject::tr("Bright"); } +bool BrightTheme::hasColorScheme() +{ + return true; +} + QPalette BrightTheme::colorScheme() { QPalette brightPalette; @@ -39,6 +44,11 @@ QColor BrightTheme::fadeColor() return QColor(239,240,241); } +bool BrightTheme::hasStyleSheet() +{ + return false; +} + QString BrightTheme::appStyleSheet() { return QString(); |