12 lines
256 B
Python
12 lines
256 B
Python
from enum import Enum
|
|
|
|
|
|
class Color(Enum):
|
|
array_background = "white"
|
|
seismic_background = "#F1E8A2"
|
|
wind_background = "#B8F3E5"
|
|
default_panel_background = "#133256"
|
|
light_text = "white"
|
|
dark_text = "#6490BA"
|
|
border = "#537DAA"
|