]> git.decadent.org.uk Git - ion3.git/blob - etc/lookcommon_emboss.lua
[svn-upgrade] Integrating new upstream version, ion3 (20070203)
[ion3.git] / etc / lookcommon_emboss.lua
1 -- Settings common to some styles.
2
3 de.defstyle("stdisp", {
4     based_on = "*",
5     shadow_pixels = 0,
6     highlight_pixels = 0,
7     text_align = "left",
8
9     de.substyle("important", {
10         foreground_colour = "green",
11     }),
12
13     de.substyle("critical", {
14         foreground_colour = "red",
15     }),
16 })
17
18 de.defstyle("actnotify", {
19     based_on = "*",
20     shadow_colour = "#600808",
21     highlight_colour = "#c04040",
22     background_colour = "#b03030",
23     foreground_colour = "#ffffff",
24 })
25
26 de.defstyle("tab-frame", {
27     based_on = "tab",
28     -- TODO: some kind of amend option. It should not be necessary to 
29     -- duplicate this definition for both tab-frame and tab-menuentry,
30     -- or for each style, nor use more complex hacks to communicate
31     -- this stuff otherwise.
32     de.substyle("*-*-*-unselected-activity", {
33         shadow_colour = "#600808",
34         highlight_colour = "#c04040",
35         background_colour = "#901010",
36         foreground_colour = "#eeeeee",
37     }),
38     
39     de.substyle("*-*-*-selected-activity", {
40         shadow_colour = "#600808",
41         highlight_colour = "#c04040",
42         background_colour = "#b03030",
43         foreground_colour = "#ffffff",
44     }),
45 })
46
47 de.defstyle("tab-frame-tiled", {
48     based_on = "tab-frame",
49     spacing = 1,
50 })
51
52 de.defstyle("frame-tiled", {
53     based_on = "frame",
54     border_style = "inlaid",
55     padding_pixels = 1,
56     spacing = 1,
57 })
58
59 de.defstyle("frame-floating", {
60     based_on = "frame",
61     border_style = "ridge",
62     bar = "shaped"
63 })
64
65 de.defstyle("frame-tiled-alt", {
66     based_on = "frame-tiled",
67     bar = "none",
68 })
69
70 de.defstyle("tab-menuentry", {
71     based_on = "tab",
72     text_align = "left",
73     highlight_pixels = 0,
74     shadow_pixels = 0,
75     
76     de.substyle("*-*-*-unselected-activity", {
77         shadow_colour = "#600808",
78         highlight_colour = "#c04040",
79         background_colour = "#901010",
80         foreground_colour = "#eeeeee",
81     }),
82     
83     de.substyle("*-*-*-selected-activity", {
84         shadow_colour = "#600808",
85         highlight_colour = "#c04040",
86         background_colour = "#b03030",
87         foreground_colour = "#ffffff",
88     }),
89 })
90
91 de.defstyle("tab-menuentry-big", {
92     based_on = "tab-menuentry",
93     font = "-*-helvetica-medium-r-normal-*-17-*-*-*-*-*-*-*",
94     padding_pixels = 7,
95 })