1{
2 pkgs,
3 inputs,
4 ...
5}: {
6 xdg.configFile."wofi/style.css".text = ''
7 window {
8 margin: 0px;
9 background-color: #282a36;
10 font-size: 25px;
11 }
12
13 #input {
14 margin: 5px;
15 border: none;
16 color: #f8f8f2;
17 background-color: #44475a;
18 }
19
20 #inner-box {
21 margin: 5px;
22 border: none;
23 background-color: #282a36;
24 }
25
26 #outer-box {
27 margin: 5px;
28 border: none;
29 background-color: #282a36;
30 }
31
32 #scroll {
33 margin: 0px;
34 border: none;
35 }
36
37 #text {
38 margin: 5px;
39 border: none;
40 color: #f8f8f2;
41 }
42
43 #entry.activatable #text {
44 color: #282a36;
45 }
46
47 #entry > * {
48 color: #f8f8f2;
49 }
50
51 #entry:selected {
52 background-color: #44475a;
53 }
54
55 #entry:selected #text {
56 font-weight: bold;
57 }
58 '';
59}