generated from itdominator/Python-With-Gtk-Template
14 lines
219 B
Python
14 lines
219 B
Python
|
# Python imports
|
||
|
from dataclasses import dataclass
|
||
|
|
||
|
# Lib imports
|
||
|
|
||
|
# Application imports
|
||
|
|
||
|
|
||
|
@dataclass
|
||
|
class Theming:
|
||
|
success_color: str = "#88cc27"
|
||
|
warning_color: str = "#ffa800"
|
||
|
error_color: str = "#ff0000"
|