1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-09-22 04:25:55 -04:00
toot/toot/tui/constants.py
2019-09-03 15:40:44 +02:00

29 lines
912 B
Python

# name, fg, bg, mono, fg_h, bg_h
PALETTE = [
# Components
('footer_message', 'dark green', ''),
('footer_message_error', 'white', 'dark red'),
('footer_status', 'white', 'dark blue'),
('footer_status_bold', 'white, bold', 'dark blue'),
('header', 'white', 'dark blue'),
('header_bold', 'white,bold', 'dark blue'),
('intro_bigtext', 'yellow', ''),
('intro_smalltext', 'light blue', ''),
# Functional
('hashtag', 'light cyan,bold', ''),
('link', ',italics', ''),
# Colors
('blue', 'light blue', ''),
('blue_bold', 'light blue, bold', ''),
('blue_selected', 'white', 'dark blue'),
('cyan', 'dark cyan', ''),
('cyan_bold', 'dark cyan,bold', ''),
('gray', 'dark gray', ''),
('green', 'dark green', ''),
('green_selected', 'white,bold', 'dark green'),
('yellow', 'yellow', ''),
('yellow_selected', 'yellow', 'dark blue'),
]