]> git.decadent.org.uk Git - ion3.git/blob - etc/look_cleanios.lua
8af15483d915444d8ce95f8a4e61b7df53dc4ce4
[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("tab", {
22     based_on = "*",
23     font = "-*-helvetica-bold-r-normal-*-10-*-*-*-*-*-*-*",
24     de.substyle("active-selected", {
25         shadow_colour = "#f0f066",
26         highlight_colour = "#f0f066",
27         background_colour = "#f0c000",
28         foreground_colour = "#000000",
29     }),
30     de.substyle("active-unselected", {
31         shadow_colour = "#ffffff",
32         highlight_colour = "#ffffff",
33         background_colour = "#d8d8d8",
34         foreground_colour = "#000000",
35     }),
36     de.substyle("inactive-selected", {
37         shadow_colour = "#ffffff",
38         highlight_colour = "#ffffff",
39         background_colour = "#a8a8a8",
40         foreground_colour = "#000000",
41     }),
42     de.substyle("inactive-unselected", {
43         shadow_colour = "#ffffff",
44         highlight_colour = "#ffffff",
45         background_colour = "#d8d8d8",
46         foreground_colour = "#000000",
47     }),
48     text_align = "center",
49 })
50
51 de.defstyle("input-edln", {
52     based_on = "*",
53     de.substyle("*-cursor", {
54         background_colour = "#000000",
55         foreground_colour = "#d8d8d8",
56     }),
57     de.substyle("*-selection", {
58         background_colour = "#f0c000",
59         foreground_colour = "#000000",
60     }),
61 })
62
63 dopath("lookcommon_clean")
64
65 gr.refresh()
66