Toot-Mastodon-CLI-TUI-clien.../toot/tui/constants.py

29 lines
912 B
Python
Raw Normal View History

# name, fg, bg, mono, fg_h, bg_h
PALETTE = [
2019-08-24 14:14:46 +02:00
# Components
('footer_message', 'dark green', ''),
('footer_message_error', 'white', 'dark red'),
('footer_status', 'white', 'dark blue'),
2019-08-24 12:53:55 +02:00
('footer_status_bold', 'white, bold', 'dark blue'),
2019-08-24 14:14:46 +02:00
('header', 'white', 'dark blue'),
('header_bold', 'white,bold', 'dark blue'),
('intro_bigtext', 'yellow', ''),
('intro_smalltext', 'light blue', ''),
2019-08-24 12:53:55 +02:00
# Functional
2019-08-24 14:14:46 +02:00
('hashtag', 'light cyan,bold', ''),
2019-08-24 12:53:55 +02:00
('link', ',italics', ''),
2019-08-24 14:14:46 +02:00
# Colors
('blue', 'light blue', ''),
('blue_bold', 'light blue, bold', ''),
2019-08-25 14:30:57 +02:00
('blue_selected', 'white', 'dark blue'),
('cyan', 'dark cyan', ''),
('cyan_bold', 'dark cyan,bold', ''),
2019-08-24 14:14:46 +02:00
('gray', 'dark gray', ''),
('green', 'dark green', ''),
('green_selected', 'white,bold', 'dark green'),
('yellow', 'yellow', ''),
('yellow_selected', 'yellow', 'dark blue'),
]