aboutsummaryrefslogtreecommitdiff
path: root/config.dot/luakit.link/theme.lua
blob: d4d7faf2c7f0e7d72ca7abf8231c494c14567ff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
--------------------
-- xoria256 theme --
--------------------

local theme = {}

-- Default settings
--theme.font = "monospace normal 9"
theme.font = "Inconsolata for Powerline 12"
theme.fg   = "#FFFFFF"
theme.bg   = "#1C1C1C"

-- 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 = "#FFFFFF"

-- Notification colours
theme.notif_fg = "#FFFFFF"
theme.notif_bg = "#1C1C1C"

-- Menu colours
theme.menu_fg                   = "#FFFFFF"
theme.menu_bg                   = "#1C1C1C"
theme.menu_selected_fg          = "#FFFFFF"
theme.menu_selected_bg          = "#444444"
theme.menu_title_bg             = "#1C1C1C"
theme.menu_primary_title_fg     = "#666"
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         = "#FFFFFF"
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           = "#FFFFFF"
theme.ibar_bg           = "#1C1C1C"

-- 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"

-- General colour pairings
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.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

return theme
-- vim: et:sw=4:ts=8:sts=4:tw=80