31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
"""Color palette for the BIOS-style TUI."""
|
|
|
|
# Color palette - BIOS style with 3D button effects
|
|
PALETTE = [
|
|
('body', 'white', 'dark blue'),
|
|
('header', 'white', 'dark red', 'bold'),
|
|
('footer', 'black', 'light gray'),
|
|
# Button colors - raised 3D effect
|
|
('button', 'black', 'light gray'),
|
|
('button_focus', 'white', 'dark red', 'bold'),
|
|
('button_highlight', 'white', 'light gray'), # Top/left edge (light)
|
|
('button_shadow', 'dark gray', 'light gray'), # Bottom/right edge (dark)
|
|
('button_pressed', 'black', 'dark gray'), # Pressed state
|
|
# Edit fields
|
|
('edit', 'black', 'light gray'),
|
|
('edit_focus', 'black', 'yellow'),
|
|
# List items
|
|
('listbox', 'black', 'light gray'),
|
|
('listbox_focus', 'white', 'dark red'),
|
|
# Dialog
|
|
('dialog', 'black', 'light gray'),
|
|
('dialog_border', 'white', 'dark blue'),
|
|
# Text styles
|
|
('label', 'yellow', 'dark blue', 'bold'),
|
|
('error', 'white', 'dark red', 'bold'),
|
|
('success', 'light green', 'dark blue', 'bold'),
|
|
# 3D shadow elements
|
|
('shadow', 'black', 'black'),
|
|
('shadow_edge', 'dark gray', 'dark blue'),
|
|
]
|