diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-09-21 21:52:33 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-09-21 21:54:53 -0300 |
commit | 70d4053742ba07215417360dfef616ce7b57ee95 (patch) | |
tree | 57366dc4726cb92812e9c692e88d81b968351944 /config.dot/luakit.link | |
parent | 562adce657add8aaf2c80597fc54fa0a906c2287 (diff) | |
download | luakit-70d4053742ba07215417360dfef616ce7b57ee95.tar.gz luakit-70d4053742ba07215417360dfef616ce7b57ee95.tar.bz2 |
Adds missing colors
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 |