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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
-- Authors: René van Bevern <rvb@debian.org>
-- License: Unknown
-- Last Changed: Unknown
--
-- look_cleanwhite.lua a bright theme fitting white terminals
--
-- uses Terminus fonts
--
-- -- René van Bevern <rvb@debian.org>
if not gr.select_engine("de") then return end
de.reset()
de.defstyle("*", {
shadow_colour = "grey70",
highlight_colour = "grey70",
background_colour = "grey90",
foreground_colour = "black",
padding_pixels = 1,
highlight_pixels = 1,
shadow_pixels = 1,
spacing = 1,
border_style = "elevated",
font = "-xos4-terminus-medium-r-normal-*-12-*-72-72-*-60-iso10646-1",
text_align = "center",
})
de.defstyle("frame", {
based_on = "*",
de.substyle("active", {
padding_colour = "black",
}),
padding_colour = "grey70",
background_colour = "white",
shadow_colour = "white",
highlight_colour = "white",
transparent_background = false,
})
de.defstyle("tab", {
based_on = "*",
highlight_pixels = 1,
shadow_pixels = 1,
padding_pixels = 0,
highlight_colour = "grey70",
shadow_colour = "grey70",
de.substyle("active-selected", {
shadow_colour = "black",
highlight_colour = "black",
background_colour = "darkslategray",
foreground_colour = "white",
}),
de.substyle("inactive-unselected", {
background_colour = "#d8d8d8",
foreground_colour = "#606060",
}),
text_align = "center",
})
de.defstyle("tab-menuentry", {
based_on = "tab",
text_align = "left",
spacing = 1,
})
de.defstyle("tab-menuentry-big", {
based_on = "tab-menuentry",
padding_pixels = 10,
})
de.defstyle("input-edln", {
based_on = "*",
de.substyle("*-cursor", {
background_colour = "#000000",
foreground_colour = "#d8d8d8",
}),
de.substyle("*-selection", {
background_colour = "#f0c000",
foreground_colour = "#000000",
}),
})
gr.refresh()
|