theme.lua

changeset 0
98e4b0c9fcac
equal deleted inserted replaced
-1:000000000000 0:98e4b0c9fcac
1 --------------------------
2 -- Default luakit theme --
3 --------------------------
4
5 theme = {}
6
7 -- Default settings
8 theme.font = "monospace normal 9"
9 theme.fg = "#fff"
10 theme.bg = "#000"
11
12 -- Statusbar specific
13 theme.sbar_fg = "#fff"
14 theme.sbar_bg = "#000"
15 theme.loaded_sbar_fg = "#33AADD"
16
17 -- Input bar specific
18 theme.ibar_fg = "#000"
19 theme.ibar_bg = "#fff"
20
21 -- Tab label
22 theme.tab_fg = "#888"
23 theme.tab_bg = "#222"
24 theme.selected_fg = "#fff"
25 theme.selected_bg = "#000"
26
27 -- Trusted/untrusted ssl colours
28 theme.trust_fg = "#0F0"
29 theme.notrust_fg = "#F00"
30
31 return theme
32 -- vim: et:sw=4:ts=8:sts=4:tw=80

mercurial