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:52:33 -0300
commitec71b0a319b6a967c0a3a1f181157639693410d1 (patch)
tree2e9e4f56243c1a7042d3d0b120edc18e1f8c81b5
parentfc24ecca542a10deefc789342f373e8d6a4a43cb (diff)
downloadluakit-stable.tar.gz
luakit-stable.tar.bz2
Adds missing colorsstable
-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