diff options
Diffstat (limited to 'calendar-widget/calendar.lua')
-rw-r--r-- | calendar-widget/calendar.lua | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/calendar-widget/calendar.lua b/calendar-widget/calendar.lua index c54fb5c..1e4967e 100644 --- a/calendar-widget/calendar.lua +++ b/calendar-widget/calendar.lua @@ -37,13 +37,32 @@ local function worker(args) weekday_fg = '#2de6e2', header_fg = '#f6019d', border = '#261447' + }, + dark = { + bg = '#000000', + fg = '#ffffff', + focus_date_bg = '#ffffff', + focus_date_fg = '#000000', + weekend_day_bg = '#444444', + weekday_fg = '#ffffff', + header_fg = '#ffffff', + border = '#333333' + }, + light = { + bg = '#ffffff', + fg = '#000000', + focus_date_bg = '#000000', + focus_date_fg = '#ffffff', + weekend_day_bg = '#AAAAAA', + weekday_fg = '#000000', + header_fg = '#000000', + border = '#CCCCCC' } } - local args = args or {} - local theme = args.theme or 'nord' + local theme = args.theme or 'light' local placement = args.placement or 'top' local styles = {} |