mirror of
https://github.com/ihabunek/toot
synced 2024-12-23 07:27:12 +01:00
a6e76e0bcb
Reorder Visibility Options to be from "most visible" to "least visible", and swap the definitions of "private" and "unlisted" to match the actual visibility that results from those actions.
46 lines
1.5 KiB
Python
46 lines
1.5 KiB
Python
# name, fg, bg, mono, fg_h, bg_h
|
|
PALETTE = [
|
|
# Components
|
|
('button', 'white', 'black'),
|
|
('button_focused', 'light gray', 'dark magenta'),
|
|
('columns_divider', 'white', 'dark blue'),
|
|
('content_warning', 'white', 'dark magenta'),
|
|
('editbox', 'white', 'black'),
|
|
('editbox_focused', 'white', 'dark magenta'),
|
|
('footer_message', 'dark green', ''),
|
|
('footer_message_error', 'light 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', ''),
|
|
('poll_bar', 'white', 'dark blue'),
|
|
|
|
# Functional
|
|
('hashtag', 'light cyan,bold', ''),
|
|
('link', ',italics', ''),
|
|
('link_focused', ',italics', 'dark magenta'),
|
|
|
|
# Colors
|
|
('bold', ',bold', ''),
|
|
('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_bold', 'yellow,bold', ''),
|
|
('warning', 'light red', ''),
|
|
]
|
|
|
|
VISIBILITY_OPTIONS = [
|
|
("public", "Public", "Post to public timelines"),
|
|
("unlisted", "Unlisted", "Do not post to public timelines"),
|
|
("private", "Private", "Post to followers only"),
|
|
("direct", "Direct", "Post to mentioned users only"),
|
|
]
|