blob: d93b50c7edd1935553a1913d2474b86b161363bf (
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
|
/*******************************************************************************
* MACOS SPOTLIGHT LIKE THEME FOR ROFI
* User : LR-Tech
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
*******************************************************************************/
* {
font: "Noto Serif CJK SC 14";
bg: #ffffe8;
fg: black;
background-color: @bg;
text-color: @fg;
}
window {
background-color: @fg;
location: center;
anchor: center;
width: 50%;
height: 60%;
border: 1px;
border-color: @fg;
border-radius: 0;
}
inputbar {
font: @font;
padding: 12px;
children: [ entry ];
}
entry {
font: inherit;
/* placeholder : ""; */
/* placeholder-color : @fg; */
}
message {
border: 2px 0 0;
border-color: @bg;
background-color: red;
}
textbox {
padding: 12px;
background-color: @bg;
}
listview {
columns: 1;
fixed-height: false;
border: 1px 0 0;
padding: 12px;
border-color: @fg;
}
element {
padding: 6px;
background-color: @bg;
}
element normal active {
border: 1px;
border-color: @fg;
}
element selected normal,
element selected active {
background-color: @bg;
text-color: @fg;
border: 2px;
border-color: @fg;
}
|