diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-09-16 15:29:20 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-09-16 15:29:20 -0300 |
commit | 4c7baa5f37c975a340059a48043a625837d065e8 (patch) | |
tree | de03245993b6d4b1030df4c6402518c154967aca /config.dot | |
parent | c5a4120ef44d92e8b453bde734484c89ee733142 (diff) | |
download | luakit-4c7baa5f37c975a340059a48043a625837d065e8.tar.gz luakit-4c7baa5f37c975a340059a48043a625837d065e8.tar.bz2 |
Adds custom theme
Diffstat (limited to 'config.dot')
-rw-r--r-- | config.dot/luakit.link/theme.lua | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/config.dot/luakit.link/theme.lua b/config.dot/luakit.link/theme.lua new file mode 100644 index 0000000..71ea036 --- /dev/null +++ b/config.dot/luakit.link/theme.lua @@ -0,0 +1,70 @@ +-------------------- +-- xoria256 theme -- +-------------------- + +local theme = {} + +-- Default settings +--theme.font = "monospace normal 9" +theme.font = "Inconsolata for Powerline 9" +theme.fg = "#fff" +theme.bg = "#1C1C1C" + +-- 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 = "#1C1C1C" + +-- 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 = "#1C1C1C" +theme.tab_ntheme = "#ddd" +theme.selected_fg = "#fff" +theme.selected_bg = "#444444" +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 |