Initial push

This commit is contained in:
2023-10-22 20:14:19 -05:00
parent f82ac6b67e
commit 8aa3d96617
69 changed files with 3650 additions and 61 deletions

View File

@@ -0,0 +1,14 @@
# Python imports
from dataclasses import dataclass
# Lib imports
# Application imports
@dataclass
class Theming:
transparency: int = 64
success_color: str = "#88cc27"
warning_color: str = "#ffa800"
error_color: str = "#ff0000"