2012-07-07 11:35:39 +02:00
|
|
|
-- Small modifications to anrxc's zenburn theme
|
2012-07-06 14:19:54 +02:00
|
|
|
|
2012-07-07 11:35:39 +02:00
|
|
|
local theme = loadrc("../themes/nice-and-clean-theme/theme")
|
|
|
|
if theme then
|
|
|
|
theme.wallpaper_cmd = { "/bin/true" }
|
2012-07-07 22:09:11 +02:00
|
|
|
theme.font = "DejaVu Sans 9"
|
2012-07-09 00:38:51 +02:00
|
|
|
theme.border_width = 4
|
2012-07-07 11:35:39 +02:00
|
|
|
theme.border_normal = "#00000000"
|
2012-07-10 12:01:37 +02:00
|
|
|
theme.border_focus = "#FF7F0066"
|
2012-07-07 11:35:39 +02:00
|
|
|
theme.border_marked = theme.border_marked .. "66"
|
2012-07-06 14:19:54 +02:00
|
|
|
|
2012-07-07 11:35:39 +02:00
|
|
|
theme.bg_normal = theme.bg_normal .. "99"
|
|
|
|
theme.bg_focus = theme.bg_focus .. "99"
|
|
|
|
theme.bg_urgent = theme.bg_urgent .. "99"
|
|
|
|
theme.bg_minimize = theme.bg_minimize .. "99"
|
|
|
|
theme.bg_widget = "#00000099"
|
|
|
|
theme.fg_widget_label = "#708090"
|
|
|
|
theme.fg_widget_value = "#FFFFFF"
|
|
|
|
theme.fg_widget_value_important = "#FF2222"
|
|
|
|
theme.fg_widget_sep = "#FFFFFF"
|
|
|
|
theme.fg_widget_border = "#FFFFFF"
|
|
|
|
theme.fg_widget_clock = "#FF7F00"
|
|
|
|
theme.fg_widget_end = "#FFFFFF"
|
|
|
|
theme.fg_widget_center = "#FFCCCC"
|
|
|
|
theme.fg_widget_start = "#FF0000"
|
|
|
|
return theme
|
|
|
|
end
|