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