View difference between Paste ID: diPgY096 and Ykx5rj4W
SHOW: | | - or go back to the newest paste.
1
--------------------------
2
-- Zenburn luakit theme --
3
--------------------------
4
5
local theme = {}
6
7
-- Default settings
8
theme.font = "liberation mono 9"
9
theme.fg   = "#DCDCCC"
10
theme.bg   = "#3F3F3F"
11
12
-- Genaral colours
13
theme.success_fg = "#7F9F7F"
14
theme.loaded_fg  = "#6ca0a3"
15
theme.error_fg = "#000"
16
theme.error_bg = "#cc9393"
17
18
-- Warning colours
19
theme.warning_fg = "#cc9393"
20
theme.warning_bg = "#3f3f3f"
21
22
-- Notification colours
23
theme.notif_fg = "#dcdccc"
24
theme.notif_bg = "#3f3f3f"
25
26
-- Menu colours
27
theme.menu_fg                   = "#DCDCCC"
28
theme.menu_bg                   = "#3F3F3F"
29
theme.menu_selected_fg          = "#7f9f7f"
30
theme.menu_selected_bg          = "#2f2f2f"
31
theme.menu_title_bg             = "#1f1f1f"
32
theme.menu_primary_title_fg     = "#CC9393"
33
theme.menu_secondary_title_fg   = "#DCDCCC"
34
35
-- Proxy manager
36
theme.proxy_active_menu_fg      = '#DCDCCC'
37
theme.proxy_active_menu_bg      = '#2f2f2f'
38
theme.proxy_inactive_menu_fg    = '#9c9c8c'
39
theme.proxy_inactive_menu_bg    = '#3F3F3F'
40
41
-- Statusbar specific
42
theme.sbar_fg         = "#f0dfaf"
43
theme.sbar_bg         = "#2f2f2f"
44
45
-- Downloadbar specific
46
theme.dbar_fg         = "#dcdccc"
47
theme.dbar_bg         = "#3f3f3f"
48
theme.dbar_error_fg   = "#cc9393"
49
50
-- Input bar specific
51
theme.ibar_fg           = "#DCDCCC"
52
theme.ibar_bg           = "#3F3F3F"
53
54
-- Tab label
55
theme.tab_fg            = "#dcdccc"
56
theme.tab_bg            = "#3f3f3f"
57
theme.tab_ntheme        = "#6f6f6f"
58
theme.selected_fg       = "#f0dfaf"
59
theme.selected_bg       = "#1e2320"
60-
theme.selected_ntheme   = "#6f6f6f"
60+
theme.selected_ntheme   = "#6ca0a3"
61
theme.loading_fg        = "#6ca0a3"
62
theme.loading_bg        = "#1e2320"
63
64
-- Trusted/untrusted ssl colours
65
theme.trust_fg          = "#7f9f7f"
66
theme.notrust_fg        = "#cc9393"
67
68
return theme
69
-- vim: et:sw=4:ts=8:sts=4:tw=80