[download]
config/luakit/theme.lua
1 package.path = package.path..";"..os.getenv("HOME").."/.?"
2 require("theme.lua")
3
4 return {
5 font = "Terminus 12px",
6 tab_hover_bg = black2,
7
8 bg = background,
9 fg = foreground,
10
11 selected_bg = foreground,
12 selected_fg = background,
13
14 ibar_bg = blue1,
15 ibar_fg = background,
16
17 trust_fg = green1,
18 notrust_fg = red1,
19
20 ok = { bg = blue1, fg = background },
21 warn = { bg = yellow1, fg = background },
22 error = { bg = red1, fg = background },
23
24 hint_font = "12px Terminus",
25 hint_border = "1px dashed "..background,
26 hint_overlay_bg = "rgba(0, 0, 0, 0)",
27 hint_overlay_selected_bg = "rgba(255, 255, 0, 0.2)"
28 }
|