aboutsummaryrefslogtreecommitdiff
path: root/tools/themes.py
AgeCommit message (Collapse)Author
2020-09-18add theme parser tool (python)xj9
``` cd tools python >>> import themes >>> theme = themes.parse_theme('../themes/orca.svg') assert theme.background == '#000000' assert theme.f_high == '#ffffff' assert theme.f_med == '#777777' assert theme.f_low == '#444444' assert theme.f_inv == '#000000' assert theme.b_high == '#dddddd' assert theme.b_med == '#72dec2' assert theme.b_low == '#222222' assert theme.b_inv == '#ffb545' ```