Internalized default settings

This commit is contained in:
2023-08-05 20:04:22 -05:00
parent 3fca6648cb
commit 9fd32b85f6
7 changed files with 129 additions and 179 deletions

View File

@@ -8,6 +8,6 @@ from dataclasses import dataclass
@dataclass
class Theming:
success_color: str
warning_color: str
error_color: str
success_color: str = "#88cc27"
warning_color: str = "#ffa800"
error_color: str = "#ff0000"