]> git.decadent.org.uk Git - ion3.git/blob - etc/look_simpleblue.lua
[svn-inject] Installing original source of ion3
[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 = "#9f9f9f",
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 = "#0f1f4f",
57         foreground_colour = "#9f9f9f",
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("tab-frame", {
69     based_on = "tab",
70     de.substyle("*-*-*-*-activity", {
71         shadow_colour = "#907070",
72         highlight_colour = "#907070",
73         background_colour = "#990000",
74         foreground_colour = "#eeeeee",
75     }),
76 })
77
78 de.defstyle("tab-menuentry", {
79     based_on = "tab",
80     text_align = "left",
81 })
82
83 de.defstyle("tab-menuentry-big", {
84     based_on = "tab-menuentry",
85     font = "-*-helvetica-medium-r-normal-*-17-*-*-*-*-*-*-*",
86     padding_pixels = 7,
87 })
88
89 de.defstyle("input", {
90     based_on = "*",
91     shadow_colour = "black",
92     highlight_colour = "black",
93     background_colour = "#3f3f3f",
94     foreground_colour = "white",
95     padding_pixels = 1,
96     highlight_pixels = 0,
97     shadow_pixels = 0,
98     border_style = "elevated",
99     de.substyle("*-cursor", {
100         background_colour = "white",
101         foreground_colour = "#3f3f3f",
102     }),
103     de.substyle("*-selection", {
104         background_colour = "black",
105         foreground_colour = "white",
106     }),
107 })
108
109 dopath("lookcommon_clean")
110
111 gr.refresh()
112