mirror of
https://github.com/283375/arcaea-offline-pyside-ui.git
synced 2026-02-27 16:11:09 +00:00
impr(ui.theme): add secondary & tertiary colors
This commit is contained in:
@ -6,6 +6,8 @@ from PySide6.QtGui import QColor, QPalette
|
||||
|
||||
class _TCustomPalette(TypedDict):
|
||||
primary: QColor
|
||||
secondary: QColor
|
||||
tertiary: QColor
|
||||
success: QColor
|
||||
error: QColor
|
||||
|
||||
@ -32,6 +34,8 @@ class ThemeInfo:
|
||||
class ThemeImpl:
|
||||
DEFAULT_CUSTOM_PALETTE: _TCustomPalette = {
|
||||
"primary": QColor.fromString("#616161"),
|
||||
"secondary": QColor.fromString("#616161"),
|
||||
"tertiary": QColor.fromString("#616161"),
|
||||
"success": QColor.fromString("#616161"),
|
||||
"error": QColor.fromString("#616161"),
|
||||
"toolTipBase": QColor.fromString("#616161"),
|
||||
|
||||
Reference in New Issue
Block a user