21 lines
562 B
Python
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']
|
|
}
|