From ecb9a0e9e8ed2957fae4694a0c39e9e125661178 Mon Sep 17 00:00:00 2001 From: Pavel Makhov Date: Tue, 17 Dec 2019 16:43:36 -0500 Subject: add light and dark calendar themes --- calendar-widget/calendar.lua | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) (limited to 'calendar-widget/calendar.lua') 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 = {} -- cgit v1.2.3