]> git.decadent.org.uk Git - ion3.git/blob - etc/look_simpleblue.lua
1bce224d1a6611ea680fbab65c0e56265b36f678
[ion3.git] / etc / look_simpleblue.lua
1 -- look_simpleblue.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 = "black",
9     highlight_colour = "black",
10     background_colour = "#0f1f4f",
11     foreground_colour = "#9f9f9f",
12     padding_pixels = 1,
13     highlight_pixels = 0,
14     shadow_pixels = 0,
15     border_style = "elevated",
16     font = "-*-helvetica-medium-r-normal-*-14-*-*-*-*-*-*-*",
17     text_align = "center",
18 })
19
20 de.defstyle("frame", {
21     based_on = "*",
22     shadow_colour = "black",
23     highlight_colour = "black",
24     padding_colour = "black",
25     background_colour = "black",
26     foreground_colour = "#ffffff",
27     padding_pixels = 0,
28     highlight_pixels = 0,
29     shadow_pixels = 0,
30     de.substyle("active", {
31         shadow_colour = "black",
32         highlight_colour = "black",
33         background_colour = "black",
34         foreground_colour = "#ffffff",
35     }),
36 })
37
38 de.defstyle("tab", {
39     based_on = "*",
40     font = "-*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-*",
41     de.substyle("active-selected", {
42         shadow_colour = "black",
43         highlight_colour = "black",
44         background_colour = "#3f3f3f",
45         foreground_colour = "#bfbfbf",
46     }),
47     de.substyle("active-unselected", {
48         shadow_colour = "black",
49         highlight_colour = "black",
50         background_colour = "#0f1f4f",
51         foreground_colour = "#9f9f9f",
52     }),
53     de.substyle("inactive-selected", {
54         shadow_colour = "black",
55         highlight_colour = "black",
56         background_colour = "#1f2f4f",
57         foreground_colour = "#bfbfbf",
58     }),
59     de.substyle("inactive-unselected", {
60         shadow_colour = "black",
61         highlight_colour = "black",
62         background_colour = "#0f1f4f",
63         foreground_colour = "#9f9f9f",
64     }),
65     text_align = "center",
66 })
67
68 de.defstyle("input", {
69     based_on = "*",
70     shadow_colour = "black",
71     highlight_colour = "black",
72     background_colour = "#3f3f3f",
73     foreground_colour = "white",
74     padding_pixels = 1,
75     highlight_pixels = 0,
76     shadow_pixels = 0,
77     border_style = "elevated",
78     de.substyle("*-cursor", {
79         background_colour = "white",
80         foreground_colour = "#3f3f3f",
81     }),
82     de.substyle("*-selection", {
83         background_colour = "black",
84         foreground_colour = "white",
85     }),
86 })
87
88 de.defstyle("input-menu", {
89     based_on = "input",
90     padding_pixels=0,
91 })
92
93 dopath("lookcommon_clean")
94
95 gr.refresh()
96