]> git.decadent.org.uk Git - ion3.git/blob - etc/look_cleanios.lua
6a70546dee62b69a2dae6b5356776b512487bf02
[ion3.git] / etc / look_cleanios.lua
1 -- look_cleanios.lua drawing engine configuration file for Ion.
2
3 if not gr.select_engine("de") then return end
4
5 de.reset()
6
7 de.defstyle("*", {
8     shadow_colour = "#ffffff",
9     highlight_colour = "#ffffff",
10     background_colour = "#d8d8d8",
11     foreground_colour = "#000000",
12     padding_pixels = 1,
13     highlight_pixels = 1,
14     shadow_pixels = 1,
15     spacing = 0,
16     border_style = "elevated",
17     font = "-*-helvetica-medium-r-normal-*-14-*-*-*-*-*-*-*",
18     text_align = "center",
19 })
20
21 de.defstyle("frame", {
22     based_on = "*",
23     padding_colour = "#d8d8d8",
24     background_colour = "#000000",
25     transparent_background = false,
26 })
27
28 de.defstyle("tab", {
29     based_on = "*",
30     font = "-*-helvetica-bold-r-normal-*-10-*-*-*-*-*-*-*",
31     de.substyle("active-selected", {
32         shadow_colour = "#f0f066",
33         highlight_colour = "#f0f066",
34         background_colour = "#f0c000",
35         foreground_colour = "#000000",
36     }),
37     de.substyle("active-unselected", {
38         shadow_colour = "#ffffff",
39         highlight_colour = "#ffffff",
40         background_colour = "#d8d8d8",
41         foreground_colour = "#000000",
42     }),
43     de.substyle("inactive-selected", {
44         shadow_colour = "#ffffff",
45         highlight_colour = "#ffffff",
46         background_colour = "#a8a8a8",
47         foreground_colour = "#000000",
48     }),
49     de.substyle("inactive-unselected", {
50         shadow_colour = "#ffffff",
51         highlight_colour = "#ffffff",
52         background_colour = "#d8d8d8",
53         foreground_colour = "#000000",
54     }),
55     text_align = "center",
56 })
57
58 de.defstyle("tab-menuentry", {
59     based_on = "tab",
60     text_align = "left",
61     spacing = 1,
62 })
63
64 de.defstyle("tab-menuentry-big", {
65     based_on = "tab-menuentry",
66     font = "-*-helvetica-medium-r-normal-*-17-*-*-*-*-*-*-*",
67     padding_pixels = 7,
68 })
69
70 de.defstyle("input-edln", {
71     based_on = "*",
72     de.substyle("*-cursor", {
73         background_colour = "#000000",
74         foreground_colour = "#d8d8d8",
75     }),
76     de.substyle("*-selection", {
77         background_colour = "#f0c000",
78         foreground_colour = "#000000",
79     }),
80 })
81
82 dopath("lookcommon_clean")
83
84 gr.refresh()
85