[UP] use ion3-plus haha.
[arrow.git] / archlinux_conf / etc / ion3 / old / look_cleanwhite.lua
blob177c420e4e1f603546aefa0878815018f4639e75
1 -- look_cleanwhite.lua a bright theme fitting white terminals
2 --
3 -- uses Terminus fonts
4 --
5 -- -- René van Bevern <rvb@debian.org>
7 if not gr.select_engine("de") then return end
9 de.reset()
11 de.defstyle("*", {
12 shadow_colour = "grey70",
13 highlight_colour = "grey70",
14 background_colour = "grey90",
15 foreground_colour = "black",
16 padding_pixels = 1,
17 highlight_pixels = 1,
18 shadow_pixels = 1,
19 spacing = 1,
20 border_style = "elevated",
21 font = "-xos4-terminus-medium-r-normal-*-12-*-72-72-*-60-iso10646-1",
22 text_align = "center",
25 de.defstyle("frame", {
26 based_on = "*",
28 de.substyle("active", {
29 padding_colour = "black",
30 }),
32 padding_colour = "grey70",
33 background_colour = "white",
34 shadow_colour = "white",
35 highlight_colour = "white",
36 transparent_background = false,
40 de.defstyle("tab", {
41 based_on = "*",
42 highlight_pixels = 1,
43 shadow_pixels = 1,
44 padding_pixels = 0,
45 highlight_colour = "grey70",
46 shadow_colour = "grey70",
47 de.substyle("active-selected", {
48 shadow_colour = "black",
49 highlight_colour = "black",
50 background_colour = "darkslategray",
51 foreground_colour = "white",
52 }),
53 de.substyle("inactive-unselected", {
54 background_colour = "#d8d8d8",
55 foreground_colour = "#606060",
56 }),
57 text_align = "center",
60 de.defstyle("tab-menuentry", {
61 based_on = "tab",
62 text_align = "left",
63 spacing = 1,
66 de.defstyle("tab-menuentry-big", {
67 based_on = "tab-menuentry",
68 padding_pixels = 10,
71 de.defstyle("input-edln", {
72 based_on = "*",
73 de.substyle("*-cursor", {
74 background_colour = "#000000",
75 foreground_colour = "#d8d8d8",
76 }),
77 de.substyle("*-selection", {
78 background_colour = "#f0c000",
79 foreground_colour = "#000000",
80 }),
83 gr.refresh()