94 lines
2.4 KiB
Lua
94 lines
2.4 KiB
Lua
-- look_simpleblue.lua drawing engine configuration file for Notion.
|
|
|
|
if not gr.select_engine("de") then return end
|
|
|
|
de.reset()
|
|
|
|
de.defstyle("*", {
|
|
shadow_colour = "black",
|
|
highlight_colour = "black",
|
|
background_colour = "#222222",
|
|
foreground_colour = "#9f9f9f",
|
|
padding_pixels = 1,
|
|
highlight_pixels = 0,
|
|
shadow_pixels = 0,
|
|
border_style = "elevated",
|
|
font = "-misc-fixed-medium-r-*-*-13-*-*-*-*-60-*-*",
|
|
-- font = "-*-helvetica-medium-r-normal-*-14-*-*-*-*-*-*-*",
|
|
text_align = "center",
|
|
})
|
|
|
|
de.defstyle("frame", {
|
|
shadow_colour = "black",
|
|
highlight_colour = "black",
|
|
padding_colour = "black",
|
|
background_colour = "black",
|
|
foreground_colour = "#ffffff",
|
|
padding_pixels = 0,
|
|
highlight_pixels = 0,
|
|
shadow_pixels = 0,
|
|
de.substyle("active", {
|
|
shadow_colour = "black",
|
|
highlight_colour = "black",
|
|
background_colour = "#D58919",
|
|
foreground_colour = "#ffffff",
|
|
}),
|
|
})
|
|
|
|
de.defstyle("tab", {
|
|
--font = "-*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-*",
|
|
de.substyle("active-selected", {
|
|
shadow_colour = "black",
|
|
highlight_colour = "black",
|
|
background_colour = "#D58919",
|
|
foreground_colour = "#000000",
|
|
}),
|
|
--de.substyle("active-unselected", {
|
|
--shadow_colour = "black",
|
|
--highlight_colour = "black",
|
|
--background_colour = "#222222",
|
|
--foreground_colour = "#9f9f9f",
|
|
--}),
|
|
--de.substyle("inactive-selected", {
|
|
--shadow_colour = "black",
|
|
--highlight_colour = "black",
|
|
--background_colour = "#382C1B",
|
|
--foreground_colour = "#bfbfbf",
|
|
--}),
|
|
--de.substyle("inactive-unselected", {
|
|
--shadow_colour = "black",
|
|
--highlight_colour = "black",
|
|
--background_colour = "#222222",
|
|
--foreground_colour = "#9f9f9f",
|
|
--}),
|
|
text_align = "left",
|
|
})
|
|
|
|
de.defstyle("input", {
|
|
shadow_colour = "black",
|
|
highlight_colour = "black",
|
|
background_colour = "#3f3f3f",
|
|
foreground_colour = "white",
|
|
padding_pixels = 1,
|
|
highlight_pixels = 0,
|
|
shadow_pixels = 0,
|
|
border_style = "elevated",
|
|
de.substyle("*-cursor", {
|
|
background_colour = "white",
|
|
foreground_colour = "#3f3f3f",
|
|
}),
|
|
de.substyle("*-selection", {
|
|
background_colour = "black",
|
|
foreground_colour = "white",
|
|
}),
|
|
})
|
|
|
|
de.defstyle("input-menu", {
|
|
padding_pixels=0,
|
|
})
|
|
|
|
dopath("lookcommon_clean")
|
|
|
|
gr.refresh()
|
|
|