-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlook_derek.lua
91 lines (81 loc) · 2.04 KB
/
look_derek.lua
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
-- look_derek.lua
if not gr.select_engine("de") then return end
de.reset()
de.defstyle("*", {
shadow_colour = "black",
highlight_colour = "black",
background_colour = "#0f1f4f",
foreground_colour = "#9f9f9f",
padding_pixels = 1,
highlight_pixels = 0,
shadow_pixels = 0,
border_style = "elevated",
font = "-*-fixed-medium-r-*-*-13-*-*-*-*-*-*-*",
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 = "black",
foreground_colour = "#ffffff",
}),
})
de.defstyle("tab", {
de.substyle("active-selected", {
shadow_colour = "black",
highlight_colour = "black",
background_colour = "#afdf87",
foreground_colour = "#5a0000",
}),
de.substyle("active-unselected", {
shadow_colour = "black",
highlight_colour = "black",
background_colour = "black",
foreground_colour = "#9f9f9f",
}),
de.substyle("inactive-selected", {
shadow_colour = "black",
highlight_colour = "black",
background_colour = "#1a1a1a",
foreground_colour = "#8f9f00",
}),
de.substyle("inactive-unselected", {
shadow_colour = "black",
highlight_colour = "black",
background_colour = "black",
foreground_colour = "#9f9f9f",
}),
text_align = "center",
})
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()