diff --git a/ui/theme/qml.py b/ui/theme/qml.py index 7a285a8..5eb50a5 100644 --- a/ui/theme/qml.py +++ b/ui/theme/qml.py @@ -28,6 +28,14 @@ class ThemeQmlExposer(QObject): def primary(self): return self._themeImpl.customPalette.primary + @Property(QColor, notify=themeChanged) + def secondary(self): + return self._themeImpl.customPalette.secondary + + @Property(QColor, notify=themeChanged) + def tertiary(self): + return self._themeImpl.customPalette.tertiary + @Property(QColor, notify=themeChanged) def success(self): return self._themeImpl.customPalette.success