aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-09-21 21:52:33 -0300
committerSilvio Rhatto <rhatto@riseup.net>2017-09-21 21:54:53 -0300
commit70d4053742ba07215417360dfef616ce7b57ee95 (patch)
tree57366dc4726cb92812e9c692e88d81b968351944
parent562adce657add8aaf2c80597fc54fa0a906c2287 (diff)
downloadluakit-70d4053742ba07215417360dfef616ce7b57ee95.tar.gz
luakit-70d4053742ba07215417360dfef616ce7b57ee95.tar.bz2
Adds missing colors
-rw-r--r--config.dot/luakit.link/theme.lua15
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