1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
-- Common tab configuration (mostly activity stuff) for the "clean styles"
de.defstyle("actnotify", {
shadow_colour = "#c04040",
highlight_colour = "#c04040",
background_colour = "#901010",
foreground_colour = "#eeeeee",
})
de.defstyle("tab-frame", {
-- TODO: some kind of amend option. It should not be necessary to
-- duplicate this definition for both tab-frame and tab-menuentry,
-- or for each style, nor use more complex hacks to communicate
-- this stuff otherwise.
de.substyle("*-*-*-unselected-activity", {
shadow_colour = "#c04040",
highlight_colour = "#c04040",
background_colour = "#901010",
foreground_colour = "#eeeeee",
}),
de.substyle("*-*-*-selected-activity", {
shadow_colour = "#c04040",
highlight_colour = "#c04040",
background_colour = "#b03030",
foreground_colour = "#ffffff",
}),
de.substyle("*-*-*-tabnumber", {
background_colour = "black",
foreground_colour = "green",
}),
})
de.defstyle("tab-frame-tiled", {
spacing = 1,
})
de.defstyle("tab-menuentry", {
text_align = "left",
de.substyle("*-*-*-unselected-activity", {
shadow_colour = "#c04040",
highlight_colour = "#c04040",
background_colour = "#901010",
foreground_colour = "#eeeeee",
}),
de.substyle("*-*-*-selected-activity", {
shadow_colour = "#c04040",
highlight_colour = "#c04040",
background_colour = "#b03030",
foreground_colour = "#ffffff",
}),
})
de.defstyle("tab-menuentry-big", {
padding_pixels = 7,
})
|