Files
cmdasana/ui/constants.py
Aaron Gutierrez 3e65d08bbf Formatting works for comments and description
Supports bold, italic, underline, and links
2018-03-07 09:44:02 -08:00

21 lines
562 B
Python

palette = [
('atm_section', 'white,bold', 'dark blue'),
('author', 'bold,dark blue', ''),
('custom_fields', 'dark red', ''),
('header', 'bold,light green', ''),
('project', 'yellow', ''),
('section', 'dark green,bold', ''),
('selected', 'standout', ''),
('task', 'light green', ''),
('text', '', ''),
('strong', 'bold', ''),
('underline', 'underline', ''),
('link', 'underline,light blue', ''),
('italic', 'italics', ''),
('workspace', 'white', 'dark blue'),
]
keys = {
'select': ['enter', 'space']
}