Drop obsolete muttng from /etc/skel/.fluxbox/menu and /etc/skel/.pekwm/menu, thanks...
[grml-desktop.git] / etc / skel / .ion2 / look-ios.lua
1 -- look-ios.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 = "#606060",
9     highlight_colour = "#ffffff",
10     background_colour = "#d8d8d8",
11     foreground_colour = "#000000",
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 = "#606060",
23     highlight_colour = "#ffffff",
24     padding_colour = "#d8d8d8",
25     background_colour = "#000000",
26     foreground_colour = "#000000",
27     padding_pixels = 2,
28     highlight_pixels = 1,
29     shadow_pixels = 1,
30     de_substyle("active", {
31         shadow_colour = "#606060",
32         highlight_colour = "#ffffff",
33         background_colour = "#d8d8d8",
34         foreground_colour = "#000000",
35     }),
36 })
37
38 de_define_style("frame-ionframe", {
39     based_on = "frame",
40     border_style = "inlaid",
41     padding_pixels = 1,
42     spacing = 0,
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-bold-r-normal-*-10-*-*-*-*-*-*-*",
53     de_substyle("active-selected", {
54         shadow_colour = "#f09000",
55         highlight_colour = "#f0f066",
56         background_colour = "#f0c000",
57         foreground_colour = "#000000",
58     }),
59     de_substyle("active-unselected", {
60         shadow_colour = "#606060",
61         highlight_colour = "#ffffff",
62         background_colour = "#d8d8d8",
63         foreground_colour = "#000000",
64     }),
65     de_substyle("inactive-selected", {
66         shadow_colour = "#606060",
67         highlight_colour = "#efefef",
68         background_colour = "#a8a8a8",
69         foreground_colour = "#000000",
70     }),
71     de_substyle("inactive-unselected", {
72         shadow_colour = "#606060",
73         highlight_colour = "#ffffff",
74         background_colour = "#d8d8d8",
75         foreground_colour = "#000000",
76     }),
77     text_align = "center",
78 })
79
80 de_define_style("tab-frame", {
81     based_on = "tab",
82     de_substyle("*-*-*-*-activity", {
83         shadow_colour = "#606060",
84         highlight_colour = "#ffffff",
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 = 0,
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 = "#606060",
111     highlight_colour = "#ffffff",
112     background_colour = "#d8d8d8",
113     foreground_colour = "#000000",
114     padding_pixels = 1,
115     highlight_pixels = 1,
116     shadow_pixels = 1,
117     border_style = "elevated",
118     de_substyle("*-cursor", {
119         background_colour = "#000000",
120         foreground_colour = "#d8d8d8",
121     }),
122     de_substyle("*-selection", {
123         background_colour = "#f0c000",
124         foreground_colour = "#000000",
125     }),
126 })
127
128 gr_refresh()
129