aside.theme module¶
Manages the application theme.
- class Theme(*, background_color: str = 'rgb(245, 240, 225)', icon_circle_color: str = 'rgb(254, 250, 239)', icon_circle_hi_color: str = 'rgb(206, 206, 206)', icon_content_color: str = 'rgb(209, 86, 47)', icon_accent_content_color: str = 'rgb(30, 61, 89)', icon_positive_content_color: str = 'rgb(29, 224, 62)', icon_negative_content_color: str = 'rgb(224, 18, 59)', icon_text_color: str = 'rgb(30, 61, 89)', icon_shadow_alpha: float = 0.4, text_color: str = 'rgb(30, 61, 89)')[source]¶
Bases:
objectApplication theme specification.
- theme: Theme¶
The current application theme.
Can be overwritten by user with the
register_themedecorator.