mirror of
https://github.com/ihabunek/toot
synced 2025-01-11 09:03:57 +01:00
27 lines
832 B
Python
27 lines
832 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'),
|
|
|
|
# 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'),
|
|
]
|