-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththeme.py
More file actions
16 lines (14 loc) · 583 Bytes
/
Copy paththeme.py
File metadata and controls
16 lines (14 loc) · 583 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""
theme.py — Shared colour tokens for Backlog Tracker.
Import this in any module that needs the app palette so colour
definitions are never duplicated between files.
"""
APP_BG = "#111318" # Dark Surface
CARD_BG = "#1a1c22" # Surface Container
SECONDARY_BG = "#24262f" # Surface Container High
ACCENT = "#a8c7fa" # Primary
ACCENT_LIGHT = "#d2e3fc" # Primary Container
ACCENT_YELLOW= "#f1db7d" # Tertiary Container
TEXT_DIM = "#c4c6d0" # On-Surface Text
SUCCESS = "#86d6a5" # Safe / Success tone
DANGER = "#ffb4ab" # Error tone