Files
cultivation-world-simulator/src/front/theme.py
2025-09-12 00:00:33 +08:00

19 lines
415 B
Python

COLORS = {
"bg": (18, 18, 18),
"grid": (40, 40, 40),
"text": (230, 230, 230),
"tooltip_bg": (32, 32, 32),
"tooltip_bd": (90, 90, 90),
"avatar": (240, 220, 90),
"sidebar_bg": (25, 25, 25),
"sidebar_border": (60, 60, 60),
"event_text": (200, 200, 200),
"status_bg": (15, 15, 15),
"status_border": (50, 50, 50),
"status_text": (220, 220, 220),
}
__all__ = ["COLORS"]