[UP] add many more ion3 cfg -_-, powerfull, and add thinkpad xorg.conf/.Xmodmap,...
[arrow.git] / archlinux_conf / etc / ion3 / look_blue.lua
blobe41f0f512df8ca1d52f1b5b5b4dc641ee6e737df
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 text_align = "center",
26 font = "-*-fangsong ti-*-*-*-*-16-*-*-*-*-*-*-*",
30 de.defstyle("frame", {
31 based_on = "*",
32 padding_colour = "#aaaaaa",
33 background_colour = "#000000",
34 transparent_background = true,
38 de.defstyle("frame-tiled", {
39 based_on = "frame",
40 shadow_pixels = 0,
41 highlight_pixels = 0,
42 padding_pixels = 0,
43 spacing = 1,
47 de.defstyle("tab", {
48 based_on = "*",
50 de.substyle("active-selected", {
51 highlight_colour = "#9999bb",
52 shadow_colour = "#9999bb",
53 background_colour = "#34639f",
54 foreground_colour = "#eeeeff",
55 }),
57 de.substyle("inactive-selected", {
58 highlight_colour = "#dddddd",
59 shadow_colour = "#dddddd",
60 background_colour = "#7c95b4",
61 foreground_colour = "#333366",
62 }),
66 de.defstyle("tab-menuentry", {
67 based_on = "tab",
68 text_align = "left",
69 spacing = 1,
73 de.defstyle("tab-menuentry-big", {
74 based_on = "tab-menuentry",
75 padding_pixels = 4,
79 de.defstyle("input", {
80 based_on = "*",
81 text_align = "left",
82 spacing = 0,
83 highlight_colour = "#9999bb",
84 shadow_colour = "#9999bb",
85 background_colour = "#34639f",
86 foreground_colour = "#eeeeff",
88 de.substyle("*-selection", {
89 background_colour = "#9999ff",
90 foreground_colour = "#333366",
91 }),
93 de.substyle("*-cursor", {
94 background_colour = "#ccccff",
95 foreground_colour = "#9999aa",
96 }),
99 dopath("lookcommon_clean")
101 -- Refresh objects' brushes.
102 gr.refresh()