]> git.sev.monster Git - dotfiles.git/blame - xdg/luakit/theme.lua
fixed .config not being added
[dotfiles.git] / xdg / luakit / theme.lua
CommitLineData
d9362f34 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
43theme.error_fg = theme.error.fg
44theme.error_bg = theme.error.bg
45
46-- Notification colours
47theme.notif_fg = S_blue
48theme.notif_bg = S_base02
49
50-- Menu colours
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
58
59theme.menu_disabled_fg = S_base01
60theme.menu_disabled_bg = S_base03
61theme.menu_enabled_fg = S_yellow --?
62theme.menu_enabled_bg = S_green --?
63theme.menu_active_fg = S_green
64theme.menu_active_bg = theme.menu_bg
65
66-- Proxy manager
67theme.proxy_active_menu_fg = S_green
68theme.proxy_active_menu_bg = theme.menu_bg
69theme.proxy_inactive_menu_fg = theme.menu_fg
70theme.proxy_inactive_menu_bg = theme.menu_bg
71
72-- Statusbar specific
73theme.sbar_fg = S_base0
74theme.sbar_bg = "#110800"
75
76-- Downloadbar specific
77theme.dbar_fg = theme.menu_fg
78theme.dbar_bg = theme.menu_bg
79theme.dbar_error_fg = S_red
80
81-- Input bar specific
82theme.ibar_fg = S_base1
83theme.ibar_bg = S_base03
84
85-- Tab label
86theme.tab_fg = S_base0
87theme.tab_bg = S_base03
88theme.tab_hover_bg = S_base02
89theme.tab_ntheme = S_red
90theme.selected_fg = S_base1
91theme.selected_bg = S_base02
92theme.selected_ntheme = S_magenta
93theme.loading_fg = S_green
94theme.loading_bg = S_base02
95
96theme.selected_private_tab_bg = S_violet
97theme.private_tab_bg = S_magenta
98
99-- Trusted/untrusted ssl colours
100theme.trust_fg = S_green
101theme.notrust_fg = S_base01
102
103
104return theme
105
106-- vim: et:sw=4:ts=8:sts=4:tw=80
This page took 0.047194 seconds and 4 git commands to generate.