mirror of
https://github.com/283375/arcaea-offline-pyside-ui.git
synced 2026-02-27 16:11:09 +00:00
feat(ui.theme): add arcaea colors
This commit is contained in:
@ -51,3 +51,35 @@ class ThemeQmlExposer(QObject):
|
||||
@Property(QColor, notify=themeChanged)
|
||||
def toolTipText(self):
|
||||
return self._themeImpl.customPalette.toolTipText
|
||||
|
||||
@Property(QColor, notify=themeChanged)
|
||||
def past(self):
|
||||
return self._themeImpl.customPalette.past
|
||||
|
||||
@Property(QColor, notify=themeChanged)
|
||||
def present(self):
|
||||
return self._themeImpl.customPalette.present
|
||||
|
||||
@Property(QColor, notify=themeChanged)
|
||||
def future(self):
|
||||
return self._themeImpl.customPalette.future
|
||||
|
||||
@Property(QColor, notify=themeChanged)
|
||||
def beyond(self):
|
||||
return self._themeImpl.customPalette.beyond
|
||||
|
||||
@Property(QColor, notify=themeChanged)
|
||||
def eternal(self):
|
||||
return self._themeImpl.customPalette.eternal
|
||||
|
||||
@Property(QColor, notify=themeChanged)
|
||||
def pure(self):
|
||||
return self._themeImpl.customPalette.pure
|
||||
|
||||
@Property(QColor, notify=themeChanged)
|
||||
def far(self):
|
||||
return self._themeImpl.customPalette.far
|
||||
|
||||
@Property(QColor, notify=themeChanged)
|
||||
def lost(self):
|
||||
return self._themeImpl.customPalette.lost
|
||||
|
||||
Reference in New Issue
Block a user