2019-08-24 11:20:31 +02:00
|
|
|
# name, fg, bg, mono, fg_h, bg_h
|
|
|
|
PALETTE = [
|
2019-08-24 14:14:46 +02:00
|
|
|
# Components
|
|
|
|
('footer_message', 'dark green', ''),
|
2019-08-24 11:20:31 +02:00
|
|
|
('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'),
|
2019-08-24 11:20:31 +02:00
|
|
|
|
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
|
2019-08-24 11:20:31 +02:00
|
|
|
('blue', 'light blue', ''),
|
|
|
|
('blue_bold', 'light blue, bold', ''),
|
|
|
|
('blue_selected', 'white,bold', 'dark blue'),
|
|
|
|
('cyan', 'dark cyan', ''),
|
|
|
|
('cyan_bold', 'dark cyan,bold', ''),
|
2019-08-24 14:14:46 +02:00
|
|
|
('gray', 'dark gray', ''),
|
2019-08-24 11:20:31 +02:00
|
|
|
('green', 'dark green', ''),
|
|
|
|
('green_selected', 'white,bold', 'dark green'),
|
|
|
|
('yellow', 'yellow', ''),
|
|
|
|
('yellow_selected', 'yellow', 'dark blue'),
|
|
|
|
]
|