toot/toot/tui/constants.py

23 wiersze
657 B
Python

# name, fg, bg, mono, fg_h, bg_h
PALETTE = [
# Header
('header', 'white', 'dark blue'),
('header_bold', 'white,bold', 'dark blue'),
# Footer
('footer_status', 'white', 'dark blue'),
('footer_message', 'dark green', ''),
# by color name
('blue', 'light blue', ''),
('blue_bold', 'light blue, bold', ''),
('blue_selected', 'white,bold', 'dark blue'),
('cyan', 'dark cyan', ''),
('cyan_bold', 'dark cyan,bold', ''),
('green', 'dark green', ''),
('green_selected', 'white,bold', 'dark green'),
('italic', 'white', ''),
('yellow', 'yellow', ''),
('yellow_selected', 'yellow', 'dark blue'),
]