blob: 1f6e232c02433ddb9bcfe1503ea0cdd34867b6ce (
plain)
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
|
/**
* Blackout Catppuccin Theme
* Modified to match #000000 Ghostty and White prompt setup
*/
* {
base: #000000; /* True Black */
surface0: #181825; /* Darker Grey */
overlay0: #313244; /* Selection Grey */
text: #ffffff; /* Pure White */
mauve: #cba6f7;
red: #f38ba8;
peach: #fab387;
green: #a6e3a1;
lavender: #b4befe;
background-color: @base;
}
window {
height: 600;
width: 600;
border: 2;
border-radius: 12;
border-color: @mauve; /* Gives a subtle glow against the black */
}
mainbox {
spacing: 0;
children: [inputbar, message, listview];
}
inputbar {
text-color: @text;
padding: 20;
background-color: @base;
children: [prompt, entry];
}
entry {
placeholder: "Search...";
placeholder-color: @overlay0;
text-color: @text;
}
message {
padding: 10;
background-color: @surface0;
}
listview {
padding: 8;
border-radius: 0 0 10 10;
border: 0;
background-color: @base;
dynamic: true;
lines: 10;
}
textbox {
text-color: @text;
background-color: inherit;
}
error-message {
border: 2;
border-color: @red;
padding: 20;
}
entry, prompt, case-indicator {
text-color: inherit;
}
prompt {
margin: 0 10 0 0;
text-color: @mauve; /* Keeps the prompt arrow/icon colorful */
}
element {
padding: 8;
vertical-align: 0.5;
border-radius: 8;
background-color: transparent;
text-color: @text;
}
element selected.normal {
background-color: @overlay0;
text-color: @text;
}
element alternate.normal {
background-color: inherit;
}
/* Logic for active/urgent states */
element normal.active, element alternate.active {
text-color: @green;
}
element selected.active {
background-color: @green;
text-color: @base;
}
element normal.urgent, element alternate.urgent {
text-color: @red;
}
element selected.urgent {
background-color: @red;
text-color: @base;
}
element-text, element-icon {
size: 32;
margin: 0 12 0 0;
vertical-align: 0.5;
background-color: inherit;
text-color: inherit;
}
|