Drop obsolete muttng from /etc/skel/.fluxbox/menu and /etc/skel/.pekwm/menu, thanks...
[grml-desktop.git] / etc / skel / .ion2 / look-wheat2.lua
1 -- look-wheat2.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_define_style("*", {
8     shadow_colour = "gray10",
9     highlight_colour = "gray10",
10     background_colour = "#7f7f75",
11     foreground_colour = "white",
12     padding_pixels = 1,
13     highlight_pixels = 1,
14     shadow_pixels = 1,
15     border_style = "elevated",
16     font = "-*-helvetica-medium-r-normal-*-14-*-*-*-*-*-*-*",
17     text_align = "center",
18 })
19
20 de_define_style("frame", {
21     based_on = "*",
22     shadow_colour = "gray10",
23     highlight_colour = "gray10",
24     padding_colour = "#7f7f75",
25     background_colour = "black",
26     foreground_colour = "white",
27     padding_pixels = 1,
28     highlight_pixels = 1,
29     shadow_pixels = 1,
30     de_substyle("active", {
31         shadow_colour = "gray10",
32         highlight_colour = "gray10",
33         background_colour = "#7f7f75",
34         foreground_colour = "white",
35     }),
36 })
37
38 de_define_style("frame-ionframe", {
39     based_on = "frame",
40     border_style = "inlaid",
41     padding_pixels = 1,
42     spacing = 1,
43 })
44
45 de_define_style("frame-floatframe", {
46     based_on = "frame",
47     border_style = "ridge"
48 })
49
50 de_define_style("tab", {
51     based_on = "*",
52     font = "-*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-*",
53     de_substyle("active-selected", {
54         shadow_colour = "gray10",
55         highlight_colour = "gray10",
56         background_colour = "#aaaa9e",
57         foreground_colour = "white",
58     }),
59     de_substyle("active-unselected", {
60         shadow_colour = "gray10",
61         highlight_colour = "gray10",
62         background_colour = "#7f7f75",
63         foreground_colour = "white",
64     }),
65     de_substyle("inactive-selected", {
66         shadow_colour = "gray10",
67         highlight_colour = "gray10",
68         background_colour = "#7f7f75",
69         foreground_colour = "white",
70     }),
71     de_substyle("inactive-unselected", {
72         shadow_colour = "gray10",
73         highlight_colour = "gray10",
74         background_colour = "#7f7f75",
75         foreground_colour = "#aaaa9e",
76     }),
77     text_align = "center",
78 })
79
80 de_define_style("tab-frame", {
81     based_on = "tab",
82     de_substyle("*-*-*-*-activity", {
83         shadow_colour = "black",
84         highlight_colour = "black",
85         background_colour = "#990000",
86         foreground_colour = "#eeeeee",
87     }),
88 })
89
90 de_define_style("tab-frame-ionframe", {
91     based_on = "tab-frame",
92     spacing = 1,
93 })
94
95 de_define_style("tab-menuentry", {
96     based_on = "tab",
97     text_align = "left",
98 })
99
100 de_define_style("tab-menuentry-big", {
101     based_on = "tab-menuentry",
102     font = "-*-helvetica-medium-r-normal-*-17-*-*-*-*-*-*-*",
103     padding_pixels = 7,
104 })
105
106 de_define_style("input", {
107     based_on = "*",
108     shadow_colour = "black",
109     highlight_colour = "black",
110     background_colour = "#454545",
111     foreground_colour = "white",
112     padding_pixels = 1,
113     highlight_pixels = 1,
114     shadow_pixels = 1,
115     border_style = "elevated",
116     de_substyle("*-cursor", {
117         background_colour = "white",
118         foreground_colour = "#454545",
119     }),
120     de_substyle("*-selection", {
121         background_colour = "black",
122         foreground_colour = "white",
123     }),
124 })
125
126 gr_refresh()
127