]> git.sev.monster Git - dotfiles.git/blame - xdg/luakit/theme.lua
added full transparent bg term, changed class name
[dotfiles.git] / xdg / luakit / theme.lua
CommitLineData
03bc64c4 1----------------------------
2-- Solarized luakit theme --
3----------------------------
4
5--local S_base03 = "#002b36"
6local S_base03 = "#000a0d"
7local S_base02 = "#073642"
8local S_base01 = "#586e75"
9local S_base00 = "#657b83"
10local S_base0 = "#839496"
11local S_base1 = "#93a1a1"
12local S_base2 = "#eee8d5"
13local S_base3 = "#fdf6e3"
14
15local S_yellow = "#b58900"
16local S_orange = "#cb4b16"
17local S_red = "#dc322f"
18local S_magenta = "#d33682"
19local S_violet = "#6c71c4"
20local S_blue = "#268bd2"
21local S_cyan = "#2aa198"
22--local S_green = "#859900"
23local S_green = "#85c000"
24
25
26local theme = {}
27
28-- Default settings
29theme.font = "10px Dina"
30theme.fg = S_base0
31theme.bg = S_base03
32
33-- General colour pairings
34theme.ok = { fg = S_base0, bg = S_base03 }
35theme.warn = { fg = S_yellow, bg = S_base02 }
36theme.error = { fg = "#000", bg = S_red }
37
38-- General colours
39theme.success_fg = S_green
40theme.loaded_fg = S_cyan
41theme.warning_fg = theme.warn.fg
42theme.warning_bg = theme.warn.bg
118fb6e0 43theme.error_fg = theme.error.fg
44theme.error_bg = theme.error.bg
03bc64c4 45
46-- Notification colours
47theme.notif_fg = S_blue
48theme.notif_bg = S_base02
49
50-- Menu colours
118fb6e0 51theme.menu_fg = S_base0
52theme.menu_bg = S_base03
53theme.menu_selected_fg = S_base0
54theme.menu_selected_bg = S_base02
55theme.menu_title_bg = S_base03
56theme.menu_primary_title_fg = S_base0
57theme.menu_secondary_title_fg = S_base01
03bc64c4 58
59theme.menu_disabled_fg = S_base01
118fb6e0 60theme.menu_disabled_bg = theme.menu_bg
61-- enabled but not active, eg. userstyles that aren't applied
62theme.menu_enabled_fg = S_yellow
63theme.menu_enabled_bg = theme.menu_bg
64theme.menu_active_fg = S_green
65theme.menu_active_bg = theme.menu_bg
03bc64c4 66
67-- Proxy manager
118fb6e0 68theme.proxy_active_menu_fg = S_green
69theme.proxy_active_menu_bg = theme.menu_bg
70theme.proxy_inactive_menu_fg = theme.menu_fg
71theme.proxy_inactive_menu_bg = theme.menu_bg
03bc64c4 72
73-- Statusbar specific
118fb6e0 74theme.sbar_fg = S_base0
75theme.sbar_bg = "#110800"
03bc64c4 76
77-- Downloadbar specific
118fb6e0 78theme.dbar_fg = theme.menu_fg
79theme.dbar_bg = theme.menu_bg
80theme.dbar_error_fg = S_red
03bc64c4 81
82-- Input bar specific
118fb6e0 83theme.ibar_fg = S_base1
84theme.ibar_bg = S_base03
03bc64c4 85
86-- Tab label
118fb6e0 87theme.tab_fg = S_base1
d8be64ba 88theme.tab_bg = "#221100"
89theme.tab_hover_bg = theme.tab_bg
90theme.tab_ntheme = S_red
118fb6e0 91theme.selected_fg = S_base2
92theme.selected_bg = "#aa5500"
d8be64ba 93theme.selected_ntheme = theme.selected_fg
94theme.loading_fg = S_yellow
95theme.loading_bg = S_base02 --unused
03bc64c4 96
97theme.selected_private_tab_bg = S_violet
118fb6e0 98theme.private_tab_bg = S_magenta
03bc64c4 99
100-- Trusted/untrusted ssl colours
118fb6e0 101theme.trust_fg = S_green
102theme.notrust_fg = S_red
03bc64c4 103
104
105return theme
106
107-- vim: et:sw=4:ts=8:sts=4:tw=80
This page took 0.052864 seconds and 4 git commands to generate.