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
|
-- look_clean.lua drawing engine configuration file for Notion.
if not gr.select_engine("de") then return end
de.reset()
de.defstyle("*", {
shadow_colour = "grey",
highlight_colour = "grey",
background_colour = "#545d75",
foreground_colour = "grey",
padding_pixels = 1,
highlight_pixels = 1,
shadow_pixels = 1,
border_style = "elevated",
font = "-misc-fixed-medium-r-*-*-13-*-*-*-*-60-*-*",
text_align = "center",
})
de.defstyle("tab", {
font = "-misc-fixed-medium-r-*-*-13-*-*-*-*-60-*-*",
de.substyle("active-selected", {
shadow_colour = "white",
highlight_colour = "white",
background_colour = "#8a999e",
foreground_colour = "white",
}),
de.substyle("active-unselected", {
shadow_colour = "grey",
highlight_colour = "grey",
background_colour = "#545d75",
foreground_colour = "grey",
}),
de.substyle("inactive-selected", {
shadow_colour = "grey",
highlight_colour = "grey",
background_colour = "#545d75",
foreground_colour = "grey",
}),
de.substyle("inactive-unselected", {
shadow_colour = "grey",
highlight_colour = "grey",
background_colour = "#545d75",
foreground_colour = "grey",
}),
text_align = "center",
})
de.defstyle("input", {
shadow_colour = "grey",
highlight_colour = "grey",
background_colour = "#545d75",
foreground_colour = "white",
padding_pixels = 1,
highlight_pixels = 1,
shadow_pixels = 1,
border_style = "elevated",
de.substyle("*-cursor", {
background_colour = "white",
foreground_colour = "#545d75",
}),
de.substyle("*-selection", {
background_colour = "#aaaaaa",
foreground_colour = "black",
}),
font = "-misc-fixed-medium-r-*-*-13-*-*-*-*-60-*-*",
})
dopath("lookcommon_clean")
de.defstyle("tab-menuentry-big", {
padding_pixels = 7,
})
gr.refresh()
|