Python-With-Gtk-Template/src/utils/settings_manager/options/theming.py

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"