File: look_ootput_dark.lua

package info (click to toggle)
notion 3%2B2014010901-1
  • links: PTS, VCS
  • area: non-free
  • in suites: jessie, jessie-kfreebsd
  • size: 4,940 kB
  • ctags: 6,104
  • sloc: ansic: 46,870; sh: 2,008; makefile: 598; perl: 270
file content (126 lines) | stat: -rw-r--r-- 3,235 bytes parent folder | download | duplicates (3)
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
-- Authors: ootput
-- License: Unknown
-- Last Changed: Unknown
--
-- look_ootput_dark.lua drawing engine configuration file for Ion.
---- <ootput @ freenode>

if not gr.select_engine("de") then return end

de.reset()

de.defstyle("*", {
    background_colour = "black",
    foreground_colour = "#204a87",
    font = "profont11",
    border_style = "elevated",
    highlight_colour = "grey20",
    highlight_pixels = 0,
    padding_pixels = 1,
    shadow_colour = "grey20",
    shadow_pixels = 0,
    spacing = 0,
    text_align = "center",
})

de.defstyle("frame", {
    based_on = "*",
    padding_colour = "grey10",
    transparent_background = true,
    de.substyle("active", {
        shadow_colour = "black",
        highlight_colour = "black",
        padding_colour = "#204a87",
    }),
})

de.defstyle("frame-ionframe", {
    based_on = "frame",
})

de.defstyle("tab", {
    based_on = "*",
    de.substyle("active-selected", {
        shadow_colour = "#374b83",
        highlight_colour = "#374b83",
        background_colour = "#204a87",
        foreground_colour = "black",
        padding_colour = "black",
    }),
    de.substyle("active-unselected", {
        foreground_colour = "grey40",
        padding_colour = "#000060",
    }),
    de.substyle("inactive-selected", {
        padding_colour = "#000060",
    }),
    de.substyle("inactive-unselected", {
        foreground_colour = "grey40",
        padding_colour = "#000060",
    }),
    text_align = "center",
})

de.defstyle("tab-frame", {
    based_on = "tab",
    de.substyle("*-*-*-*-activity", {
        foreground_colour = "#ff8171",
    }),
})

de.defstyle("tab-menuentry", {
    based_on = "*",
    text_align = "left",
    de.substyle("active-selected", {
        shadow_colour = "#374b83",
        highlight_colour = "#374b83",
        background_colour = "#204a87",
        foreground_colour = "black",
    }),
    de.substyle("active-unselected", {
    }),
    de.substyle("inactive-selected", {
        background_colour = "#97abd3",
        foreground_colour = "black",
    }),
    de.substyle("inactive-unselected", {
        foreground_colour = "grey40",
    }),
})

de.defstyle("tab-menuentry-big", {
    based_on = "tab-menuentry",
})

de.defstyle("input", {
    based_on = "*",
    shadow_colour = "black",
    highlight_colour = "black",
    de.substyle("*-cursor", {
        background_colour = "white",
        foreground_colour = "black",
    }),
    de.substyle("*-selection", {
        foreground_colour = "#aaaaaa",
    }),
})

de.defstyle("stdisp", {
    based_on = "tab",
    padding_colour = "black",
    de.substyle("important", { foreground_colour = "#ffff00", }),
    de.substyle("critical", { foreground_colour = "#ff0000", }),
    de.substyle("gray", { foreground_colour = "#505050", }),
    de.substyle("red", { foreground_colour = "#ff0000", }),
    de.substyle("green", { foreground_colour = "#00ff00", }),
    de.substyle("blue", { foreground_colour = "#0000ff", }),
    de.substyle("cyan", { foreground_colour = "#00ffff", }),
    de.substyle("magenta", { foreground_colour = "#ff00ff", }),
    de.substyle("yellow", { foreground_colour = "#ffff00", }),
})

de.defstyle("dock", {
    outline_style = "all",
})

gr.refresh()