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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
--
-- look_newviolet for Notion's default drawing engine.
-- Based on look_cleanviolet
--
if not gr.select_engine("de") then
return
end
de.reset()
de.defstyle("*", {
highlight_colour = "#e7e7ff",
shadow_colour = "#e7e7ff",
background_colour = "#b8b8c8",
foreground_colour = "#000000",
shadow_pixels = 1,
highlight_pixels = 2,
padding_pixels = 1,
spacing = 1,
border_style = "elevated",
border_sides = "tb",
font = "xft:Source Sans Pro:size=20",
text_align = "center",
})
de.defstyle("tab", {
font = "xft:Source Sans Pro:size=20",
de.substyle("active-selected", {
highlight_colour = "#aaaacc",
shadow_colour = "#aaaacc",
background_colour = "#666699",
foreground_colour = "#eeeeee",
}),
de.substyle("inactive-selected", {
highlight_colour = "#cfcfdf",
shadow_colour = "#cfcfdf",
background_colour = "#9999bb",
foreground_colour = "#000000",
}),
})
de.defstyle("input", {
text_align = "left",
highlight_colour = "#eeeeff",
shadow_colour = "#eeeeff",
de.substyle("*-selection", {
background_colour = "#666699",
foreground_colour = "#000000",
}),
de.substyle("*-cursor", {
background_colour = "#000000",
foreground_colour = "#b8b8c8",
}),
})
de.defstyle("input-menu", {
highlight_pixels = 0,
shadow_pixels = 0,
padding_pixels = 0,
})
de.defstyle("frame", {
background_colour = "#000000",
transparent_background = false,
shadow_pixels = 1,
highlight_pixels = 1,
padding_pixels = 0,
border_sides = "all",
de.substyle("quasiactive", {
-- Something detached from the frame is active
padding_colour = "#901010",
}),
})
de.defstyle("frame-tiled", {
shadow_pixels = 0,
highlight_pixels = 0,
padding_pixels = 1,
})
de.defstyle("frame-tiled-alt", {
bar = "none",
})
de.defstyle("frame-floating", {
bar = "shaped",
padding_pixels = 0,
})
de.defstyle("frame-transient", {
bar = "none",
padding_pixels = 1,
})
dopath("lookcommon_clean_stdisp")
dopath("lookcommon_clean_tab")
-- Refresh objects' brushes.
gr.refresh()
|