mirror of
https://github.com/283375/arcaea-offline-pyside-ui.git
synced 2026-02-27 16:11:09 +00:00
wip: theme system
- Add theme id - WIP theme cache key - Force scheme (light/dark) for dynamic theme - でびるんちゃんかわいい
This commit is contained in:
@ -35,3 +35,11 @@ class ThemeQmlExposer(QObject):
|
||||
@Property(QColor, notify=themeChanged)
|
||||
def error(self):
|
||||
return self._themeImpl.customPalette["error"]
|
||||
|
||||
@Property(QColor, notify=themeChanged)
|
||||
def toolTipBase(self):
|
||||
return self._themeImpl.customPalette["toolTipBase"]
|
||||
|
||||
@Property(QColor, notify=themeChanged)
|
||||
def toolTipText(self):
|
||||
return self._themeImpl.customPalette["toolTipText"]
|
||||
|
||||
Reference in New Issue
Block a user