Which dependencies to install for Debian (probably incomplete)
[notion/jeffpc.git] / etc / look_brownsteel.lua
blob4d4cc65d9a259ee151b37e267e26acab14130c0c
1 -- look_brownsteel.lua drawing engine configuration file for Notion.
3 if not gr.select_engine("de") then return end
5 de.reset()
7 de.defstyle("*", {
8 shadow_colour = "#404040",
9 highlight_colour = "#707070",
10 background_colour = "#505050",
11 foreground_colour = "#a0a0a0",
12 padding_pixels = 1,
13 highlight_pixels = 1,
14 shadow_pixels = 1,
15 border_style = "elevated",
16 font = "-*-helvetica-medium-r-normal-*-14-*-*-*-*-*-*-*",
17 text_align = "center",
20 de.defstyle("tab", {
21 font = "-*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-*",
22 de.substyle("active-selected", {
23 shadow_colour = "#304050",
24 highlight_colour = "#708090",
25 background_colour = "#506070",
26 foreground_colour = "#ffffff",
27 }),
28 de.substyle("active-unselected", {
29 shadow_colour = "#203040",
30 highlight_colour = "#607080",
31 background_colour = "#405060",
32 foreground_colour = "#a0a0a0",
33 }),
34 de.substyle("inactive-selected", {
35 shadow_colour = "#404040",
36 highlight_colour = "#909090",
37 background_colour = "#606060",
38 foreground_colour = "#a0a0a0",
39 }),
40 de.substyle("inactive-unselected", {
41 shadow_colour = "#404040",
42 highlight_colour = "#707070",
43 background_colour = "#505050",
44 foreground_colour = "#a0a0a0",
45 }),
46 text_align = "center",
49 de.defstyle("input", {
50 shadow_colour = "#404040",
51 highlight_colour = "#707070",
52 background_colour = "#000000",
53 foreground_colour = "#ffffff",
54 padding_pixels = 1,
55 highlight_pixels = 1,
56 shadow_pixels = 1,
57 border_style = "elevated",
58 de.substyle("*-cursor", {
59 background_colour = "#ffffff",
60 foreground_colour = "#000000",
61 }),
62 de.substyle("*-selection", {
63 background_colour = "#505050",
64 foreground_colour = "#ffffff",
65 }),
68 de.defstyle("input-menu", {
69 de.substyle("active", {
70 shadow_colour = "#304050",
71 highlight_colour = "#708090",
72 background_colour = "#506070",
73 foreground_colour = "#ffffff",
74 }),
77 dopath("lookcommon_emboss")
79 gr.refresh()