Drop obsolete muttng from /etc/skel/.fluxbox/menu and /etc/skel/.pekwm/menu, thanks...
[grml-desktop.git] / etc / skel / .ion2 / look-brownsteel.lua
1 -- look-brownsteel.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 = "#404040",
9     highlight_colour = "#707070",
10     background_colour = "#505050",
11     foreground_colour = "#a0a0a0",
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 = "#404040",
23     highlight_colour = "#707070",
24     padding_colour = "#505050",
25     background_colour = "#000000",
26     foreground_colour = "#ffffff",
27     padding_pixels = 2,
28     highlight_pixels = 1,
29     shadow_pixels = 1,
30     de_substyle("active", {
31         shadow_colour = "#203040",
32         highlight_colour = "#607080",
33         padding_colour = "#405060",
34         foreground_colour = "#ffffff",
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 = "#304050",
55         highlight_colour = "#708090",
56         background_colour = "#506070",
57         foreground_colour = "#ffffff",
58     }),
59     de_substyle("active-unselected", {
60         shadow_colour = "#203040",
61         highlight_colour = "#607080",
62         background_colour = "#405060",
63         foreground_colour = "#a0a0a0",
64     }),
65     de_substyle("inactive-selected", {
66         shadow_colour = "#404040",
67         highlight_colour = "#909090",
68         background_colour = "#606060",
69         foreground_colour = "#a0a0a0",
70     }),
71     de_substyle("inactive-unselected", {
72         shadow_colour = "#404040",
73         highlight_colour = "#707070",
74         background_colour = "#505050",
75         foreground_colour = "#a0a0a0",
76     }),
77     text_align = "center",
78 })
79
80 de_define_style("tab-frame", {
81     based_on = "tab",
82     de_substyle("*-*-*-*-activity", {
83         shadow_colour = "#404040",
84         highlight_colour = "#707070",
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     highlight_pixels = 0,
99     shadow_pixels = 0,
100 })
101
102 de_define_style("tab-menuentry-big", {
103     based_on = "tab-menuentry",
104     font = "-*-helvetica-medium-r-normal-*-17-*-*-*-*-*-*-*",
105     padding_pixels = 7,
106 })
107
108 de_define_style("input", {
109     based_on = "*",
110     shadow_colour = "#404040",
111     highlight_colour = "#707070",
112     background_colour = "#000000",
113     foreground_colour = "#ffffff",
114     padding_pixels = 1,
115     highlight_pixels = 1,
116     shadow_pixels = 1,
117     border_style = "elevated",
118     de_substyle("*-cursor", {
119         background_colour = "#ffffff",
120         foreground_colour = "#000000",
121     }),
122     de_substyle("*-selection", {
123         background_colour = "#505050",
124         foreground_colour = "#ffffff",
125     }),
126 })
127
128 de_define_style("input-menu", {
129     based_on = "*",
130     de_substyle("active", {
131         shadow_colour = "#304050",
132         highlight_colour = "#708090",
133         background_colour = "#506070",
134         foreground_colour = "#ffffff",
135     }),
136 })
137
138 gr_refresh()
139