1--------------------------
2-- Default luakit theme --
3--------------------------
4
5local theme = {}
6
7-- Default settings
8theme.font = "12px monospace"
9theme.fg   = "#fff"
10theme.bg   = "#000"
11
12-- Genaral colours
13theme.success_fg = "#0f0"
14theme.loaded_fg  = "#33AADD"
15theme.error_fg = "#FFF"
16theme.error_bg = "#F00"
17
18-- Warning colours
19theme.warning_fg = "#F00"
20theme.warning_bg = "#FFF"
21
22-- Notification colours
23theme.notif_fg = "#444"
24theme.notif_bg = "#FFF"
25
26-- Menu colours
27theme.menu_fg                   = "#000"
28theme.menu_bg                   = "#fff"
29theme.menu_selected_fg          = "#000"
30theme.menu_selected_bg          = "#FF0"
31theme.menu_title_bg             = "#fff"
32theme.menu_primary_title_fg     = "#f00"
33theme.menu_secondary_title_fg   = "#666"
34
35theme.menu_disabled_fg = "#999"
36theme.menu_disabled_bg = theme.menu_bg
37theme.menu_enabled_fg = theme.menu_fg
38theme.menu_enabled_bg = theme.menu_bg
39theme.menu_active_fg = "#060"
40theme.menu_active_bg = theme.menu_bg
41
42-- Proxy manager
43theme.proxy_active_menu_fg      = '#000'
44theme.proxy_active_menu_bg      = '#FFF'
45theme.proxy_inactive_menu_fg    = '#888'
46theme.proxy_inactive_menu_bg    = '#FFF'
47
48-- Statusbar specific
49theme.sbar_fg         = "#fff"
50theme.sbar_bg         = "#000"
51
52-- Downloadbar specific
53theme.dbar_fg         = "#fff"
54theme.dbar_bg         = "#000"
55theme.dbar_error_fg   = "#F00"
56
57-- Input bar specific
58theme.ibar_fg           = "#000"
59theme.ibar_bg           = "rgba(0,0,0,0)"
60
61-- Tab label
62theme.tab_fg            = "#888"
63theme.tab_bg            = "#222"
64theme.tab_hover_bg      = "#292929"
65theme.tab_ntheme        = "#ddd"
66theme.selected_fg       = "#fff"
67theme.selected_bg       = "#000"
68theme.selected_ntheme   = "#ddd"
69theme.loading_fg        = "#33AADD"
70theme.loading_bg        = "#000"
71
72theme.selected_private_tab_bg = "#3d295b"
73theme.private_tab_bg    = "#22254a"
74
75-- Trusted/untrusted ssl colours
76theme.trust_fg          = "#0F0"
77theme.notrust_fg        = "#F00"
78
79-- Follow mode hints
80theme.hint_font = "10px monospace, courier, sans-serif"
81theme.hint_fg = "#fff"
82theme.hint_bg = "#000088"
83theme.hint_border = "1px dashed #000"
84theme.hint_opacity = "0.3"
85theme.hint_overlay_bg = "rgba(255,255,153,0.3)"
86theme.hint_overlay_border = "1px dotted #000"
87theme.hint_overlay_selected_bg = "rgba(0,255,0,0.3)"
88theme.hint_overlay_selected_border = theme.hint_overlay_border
89
90-- General colour pairings
91theme.ok = { fg = "#000", bg = "#FFF" }
92theme.warn = { fg = "#F00", bg = "#FFF" }
93theme.error = { fg = "#FFF", bg = "#F00" }
94
95-- Gopher page style (override defaults)
96theme.gopher_light = { bg = "#E8E8E8", fg = "#17181C", link = "#03678D" }
97theme.gopher_dark  = { bg = "#17181C", fg = "#E8E8E8", link = "#f90" }
98
99return theme
100
101-- vim: et:sw=4:ts=8:sts=4:tw=80
102