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
|
2019-08-27 10:02:13 +02:00
|
|
|
('button', 'white', 'black'),
|
|
|
|
('button_focused', 'light gray', 'dark magenta'),
|
2019-08-31 15:06:17 +02:00
|
|
|
('columns_divider', 'white', 'dark blue'),
|
|
|
|
('content_warning', 'white', 'dark magenta'),
|
2019-08-27 10:02:13 +02:00
|
|
|
('editbox', 'white', 'black'),
|
2019-08-29 14:01:26 +02:00
|
|
|
('editbox_focused', 'white', 'dark magenta'),
|
2019-08-24 14:14:46 +02:00
|
|
|
('footer_message', 'dark green', ''),
|
2019-08-27 10:02:13 +02:00
|
|
|
('footer_message_error', 'light red', ''),
|
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-26 15:06:40 +02:00
|
|
|
('intro_bigtext', 'yellow', ''),
|
|
|
|
('intro_smalltext', 'light blue', ''),
|
2019-08-31 15:06:17 +02:00
|
|
|
('poll_bar', 'white', '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-31 14:50:31 +02:00
|
|
|
('link_focused', ',italics', 'dark magenta'),
|
2019-08-24 12:53:55 +02:00
|
|
|
|
2019-08-24 14:14:46 +02:00
|
|
|
# Colors
|
2019-08-28 17:29:33 +02:00
|
|
|
('bold', ',bold', ''),
|
2019-08-24 11:20:31 +02:00
|
|
|
('blue', 'light blue', ''),
|
|
|
|
('blue_bold', 'light blue, bold', ''),
|
2019-08-25 14:30:57 +02:00
|
|
|
('blue_selected', 'white', 'dark blue'),
|
2019-08-24 11:20:31 +02:00
|
|
|
('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', ''),
|
2019-08-31 11:17:46 +02:00
|
|
|
('yellow_bold', 'yellow,bold', ''),
|
2022-12-27 11:39:50 +01:00
|
|
|
('red', 'dark red', ''),
|
2020-01-03 09:15:11 +01:00
|
|
|
('warning', 'light red', ''),
|
2019-08-24 11:20:31 +02:00
|
|
|
]
|
2019-08-27 14:16:14 +02:00
|
|
|
|
|
|
|
VISIBILITY_OPTIONS = [
|
|
|
|
("public", "Public", "Post to public timelines"),
|
2020-01-26 02:01:48 +01:00
|
|
|
("unlisted", "Unlisted", "Do not post to public timelines"),
|
|
|
|
("private", "Private", "Post to followers only"),
|
2019-08-27 14:16:14 +02:00
|
|
|
("direct", "Direct", "Post to mentioned users only"),
|
|
|
|
]
|