diff options
Diffstat (limited to 'config.dot/luakit.link')
-rw-r--r-- | config.dot/luakit.link/theme.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config.dot/luakit.link/theme.lua b/config.dot/luakit.link/theme.lua index 263e1a5..5ea9070 100644 --- a/config.dot/luakit.link/theme.lua +++ b/config.dot/luakit.link/theme.lua @@ -66,5 +66,20 @@ theme.loading_bg = "#000" theme.trust_fg = "#0F0" theme.notrust_fg = "#F00" +-- General colour pairings +theme.ok = { fg = "#000", bg = "#FFF" } +theme.warn = { fg = "#F00", bg = "#FFF" } +theme.error = { fg = "#FFF", bg = "#F00" } + +theme.selected_private_tab_bg = "#3d295b" +theme.private_tab_bg = "#22254a" + +theme.menu_disabled_fg = "#999" +theme.menu_disabled_bg = theme.menu_bg +theme.menu_enabled_fg = theme.menu_fg +theme.menu_enabled_bg = theme.menu_bg +theme.menu_active_fg = "#060" +theme.menu_active_bg = theme.menu_bg + return theme -- vim: et:sw=4:ts=8:sts=4:tw=80 |