aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-09-21 23:06:02 -0300
committerSilvio Rhatto <rhatto@riseup.net>2017-09-21 23:06:02 -0300
commit641eed094b89e3b706d15c59d246e736dd33e341 (patch)
tree2eaee0dec0debd7c7eb24263ceee6e4c346e239f
parent511f85f1de4b4cfb9b7da5c1cf387bb358227db8 (diff)
downloadluakit-641eed094b89e3b706d15c59d246e736dd33e341.tar.gz
luakit-641eed094b89e3b706d15c59d246e736dd33e341.tar.bz2
Updates theme
-rw-r--r--config.dot/luakit.link/theme.lua52
1 files changed, 26 insertions, 26 deletions
diff --git a/config.dot/luakit.link/theme.lua b/config.dot/luakit.link/theme.lua
index 5ea9070..56c7f20 100644
--- a/config.dot/luakit.link/theme.lua
+++ b/config.dot/luakit.link/theme.lua
@@ -7,30 +7,30 @@ local theme = {}
-- Default settings
--theme.font = "monospace normal 9"
theme.font = "Inconsolata for Powerline 12"
-theme.fg = "#fff"
+theme.fg = "#FFFFFF"
theme.bg = "#1C1C1C"
--- Genaral colours
-theme.success_fg = "#0f0"
-theme.loaded_fg = "#33AADD"
-theme.error_fg = "#FFF"
-theme.error_bg = "#F00"
+-- General colours
+theme.success_fg = "#FFFFFF"
+theme.loaded_fg = "#FFFFFF"
+theme.error_fg = "#FFF"
+theme.error_bg = "#F00"
-- Warning colours
theme.warning_fg = "#F00"
-theme.warning_bg = "#FFF"
+theme.warning_bg = "#FFFFFF"
-- Notification colours
-theme.notif_fg = "#444"
-theme.notif_bg = "#FFF"
+theme.notif_fg = "#FFFFFF"
+theme.notif_bg = "#1C1C1C"
-- Menu colours
-theme.menu_fg = "#000"
-theme.menu_bg = "#fff"
-theme.menu_selected_fg = "#000"
-theme.menu_selected_bg = "#FF0"
-theme.menu_title_bg = "#fff"
-theme.menu_primary_title_fg = "#f00"
+theme.menu_fg = "#FFFFFF"
+theme.menu_bg = "#1C1C1C"
+theme.menu_selected_fg = "#FFFFFF"
+theme.menu_selected_bg = "#1C1C1C"
+theme.menu_title_bg = "#1C1C1C"
+theme.menu_primary_title_fg = "#666"
theme.menu_secondary_title_fg = "#666"
-- Proxy manager
@@ -40,17 +40,17 @@ theme.proxy_inactive_menu_fg = '#888'
theme.proxy_inactive_menu_bg = '#FFF'
-- Statusbar specific
-theme.sbar_fg = "#fff"
+theme.sbar_fg = "#FFFFFF"
theme.sbar_bg = "#1C1C1C"
-- Downloadbar specific
-theme.dbar_fg = "#fff"
+theme.dbar_fg = "#FFF"
theme.dbar_bg = "#000"
theme.dbar_error_fg = "#F00"
-- Input bar specific
-theme.ibar_fg = "#000"
-theme.ibar_bg = "#fff"
+theme.ibar_fg = "#FFFFFF"
+theme.ibar_bg = "#1C1C1C"
-- Tab label
theme.tab_fg = "#888"
@@ -67,19 +67,19 @@ theme.trust_fg = "#0F0"
theme.notrust_fg = "#F00"
-- General colour pairings
-theme.ok = { fg = "#000", bg = "#FFF" }
-theme.warn = { fg = "#F00", bg = "#FFF" }
+theme.ok = { fg = "#FFF", bg = "#1C1C1C" }
+theme.warn = { fg = "#F00", bg = "#FFF" }
theme.error = { fg = "#FFF", bg = "#F00" }
theme.selected_private_tab_bg = "#3d295b"
-theme.private_tab_bg = "#22254a"
+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
+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