summaryrefslogtreecommitdiff
path: root/.config/luakit/theme.lua
diff options
context:
space:
mode:
authorYuval Adam <yuv.adm@gmail.com>2014-02-15 01:05:08 +0200
committerYuval Adam <yuv.adm@gmail.com>2014-02-15 01:05:08 +0200
commitf0d0bcc1e4fff649db80316de4df40c1d19d89a4 (patch)
tree3e35ee2e560ff0c07759f27117b45027d4473f3c /.config/luakit/theme.lua
parentf03f2de688e6adf9a073ea2e71105675ce99da3c (diff)
Add initia luakit files
Diffstat (limited to '.config/luakit/theme.lua')
-rw-r--r--.config/luakit/theme.lua69
1 files changed, 69 insertions, 0 deletions
diff --git a/.config/luakit/theme.lua b/.config/luakit/theme.lua
new file mode 100644
index 0000000..6ac6c17
--- /dev/null
+++ b/.config/luakit/theme.lua
@@ -0,0 +1,69 @@
+--------------------------
+-- Default luakit theme --
+--------------------------
+
+local theme = {}
+
+-- Default settings
+theme.font = "monospace normal 9"
+theme.fg = "#fff"
+theme.bg = "#000"
+
+-- Genaral colours
+theme.success_fg = "#0f0"
+theme.loaded_fg = "#33AADD"
+theme.error_fg = "#FFF"
+theme.error_bg = "#F00"
+
+-- Warning colours
+theme.warning_fg = "#F00"
+theme.warning_bg = "#FFF"
+
+-- Notification colours
+theme.notif_fg = "#444"
+theme.notif_bg = "#FFF"
+
+-- 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_secondary_title_fg = "#666"
+
+-- Proxy manager
+theme.proxy_active_menu_fg = '#000'
+theme.proxy_active_menu_bg = '#FFF'
+theme.proxy_inactive_menu_fg = '#888'
+theme.proxy_inactive_menu_bg = '#FFF'
+
+-- Statusbar specific
+theme.sbar_fg = "#fff"
+theme.sbar_bg = "#000"
+
+-- Downloadbar specific
+theme.dbar_fg = "#fff"
+theme.dbar_bg = "#000"
+theme.dbar_error_fg = "#F00"
+
+-- Input bar specific
+theme.ibar_fg = "#000"
+theme.ibar_bg = "#fff"
+
+-- Tab label
+theme.tab_fg = "#888"
+theme.tab_bg = "#222"
+theme.tab_ntheme = "#ddd"
+theme.selected_fg = "#fff"
+theme.selected_bg = "#000"
+theme.selected_ntheme = "#ddd"
+theme.loading_fg = "#33AADD"
+theme.loading_bg = "#000"
+
+-- Trusted/untrusted ssl colours
+theme.trust_fg = "#0F0"
+theme.notrust_fg = "#F00"
+
+return theme
+-- vim: et:sw=4:ts=8:sts=4:tw=80