]> git.decadent.org.uk Git - ion3.git/blob - etc/lookcommon_clean.lua
[svn-upgrade] Integrating new upstream version, ion3 (20070506)
[ion3.git] / etc / lookcommon_clean.lua
1 -- Common settings for the "clean" styles
2
3 de.defstyle("frame", {
4     background_colour = "#000000",
5     de.substyle("quasiactive", {
6         -- Something detached from the frame is active
7         padding_colour = "#901010",
8     }),
9     de.substyle("userattr1", {
10         -- For user scripts
11         padding_colour = "#009010",
12     }),
13 })
14
15 de.defstyle("frame-tiled", {
16     shadow_pixels = 0,
17     highlight_pixels = 0,
18     padding_pixels = 1,
19     spacing = 1,
20 })
21
22 de.defstyle("frame-tiled-alt", {
23     bar = "none",
24 })
25
26 de.defstyle("frame-floating", {
27     bar = "shaped",
28     padding_pixels = 0,
29 })
30
31
32 de.defstyle("actnotify", {
33     shadow_colour = "#c04040",
34     highlight_colour = "#c04040",
35     background_colour = "#901010",
36     foreground_colour = "#eeeeee",
37 })
38
39 de.defstyle("tab", {
40     de.substyle("*-*-*-unselected-activity", {
41         shadow_colour = "#c04040",
42         highlight_colour = "#c04040",
43         background_colour = "#901010",
44         foreground_colour = "#eeeeee",
45     }),
46     
47     de.substyle("*-*-*-selected-activity", {
48         shadow_colour = "#c04040",
49         highlight_colour = "#c04040",
50         background_colour = "#b03030",
51         foreground_colour = "#ffffff",
52     }),
53     
54     de.substyle("*-*-*-tabnumber", {
55         background_colour = "black",
56         foreground_colour = "green",
57     }),
58 })
59
60 de.defstyle("tab-frame", {
61     spacing = 1,
62 })
63
64 de.defstyle("tab-frame-floating", {
65     spacing = 0,
66 })
67
68 de.defstyle("tab-menuentry", {
69     text_align = "left",
70 })
71
72 de.defstyle("tab-menuentry-big", {
73     font = "-*-helvetica-medium-r-normal-*-17-*-*-*-*-*-*-*",
74     padding_pixels = 7,
75 })
76
77
78 de.defstyle("stdisp", {
79     shadow_pixels = 0,
80     highlight_pixels = 0,
81     text_align = "left",
82     background_colour = "#000000",
83     foreground_colour = "grey",
84     font="-misc-fixed-medium-r-*-*-13-*-*-*-*-60-*-*",
85     
86     de.substyle("important", {
87         foreground_colour = "green",
88     }),
89
90     de.substyle("critical", {
91         foreground_colour = "red",
92     }),
93 })