[UP] show/alert/warn for battery status.
[arrow.git] / archlinux_conf / etc / ion3 / look_blue.lua
blobfef114882f10bb2a45757c5e948654a83c3df332
1 --
2 -- look_blue, based on look-cleanviolet
3 --
5 if not gr.select_engine("de") then
6 return
7 end
9 -- Clear existing styles from memory.
10 de.reset()
12 -- Base style
13 de.defstyle("*", {
14 highlight_colour = "#eeeeff",
15 shadow_colour = "#eeeeff",
16 background_colour = "#9999bb",
17 foreground_colour = "#444477",
19 shadow_pixels = 1,
20 highlight_pixels = 1,
21 padding_pixels = 1,
22 spacing = 0,
23 border_style = "elevated",
25 font = "-*-fangsong ti-*-*-*-*-16-*-*-*-*-*-*-*",
26 text_align = "center",
30 de.defstyle("frame", {
31 based_on = "*",
32 padding_colour = "#aaaaaa",
33 background_colour = "#000000",
37 de.defstyle("frame-tiled", {
38 based_on = "frame",
39 shadow_pixels = 0,
40 highlight_pixels = 0,
41 padding_pixels = 0,
42 spacing = 1,
46 de.defstyle("tab", {
47 based_on = "*",
49 de.substyle("active-selected", {
50 highlight_colour = "#9999bb",
51 shadow_colour = "#9999bb",
52 background_colour = "#34639f",
53 foreground_colour = "#eeeeff",
54 }),
56 de.substyle("inactive-selected", {
57 highlight_colour = "#dddddd",
58 shadow_colour = "#dddddd",
59 background_colour = "#7c95b4",
60 foreground_colour = "#333366",
61 }),
65 de.defstyle("tab-menuentry", {
66 based_on = "tab",
67 text_align = "left",
68 spacing = 1,
72 de.defstyle("tab-menuentry-big", {
73 based_on = "tab-menuentry",
74 padding_pixels = 4,
78 de.defstyle("input", {
79 based_on = "*",
80 text_align = "left",
81 spacing = 0,
82 highlight_colour = "#9999bb",
83 shadow_colour = "#9999bb",
84 background_colour = "#34639f",
85 foreground_colour = "#eeeeff",
87 de.substyle("*-selection", {
88 background_colour = "#9999ff",
89 foreground_colour = "#333366",
90 }),
92 de.substyle("*-cursor", {
93 background_colour = "#ccccff",
94 foreground_colour = "#9999aa",
95 }),
98 dopath("lookcommon_clean")
100 -- Refresh objects' brushes.
101 gr.refresh()