blob: b68ff7085189607845cc2c389f3979772bad029b (
plain) (
blame)
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
|
<style>
hr {
background-color: #ccc;
}
/*
Replicate colors from:
https://git.euandreh.xyz/dotfiles/tree/spacemacs.el?id=fcd9f9c4ef399d45d54927382dc1cdde251ebb0a#n866
*/
.TODO::after {
content: "TODO";
color: brown;
}
.DOING::after {
content: "DOING";
color: yellowgreen;
}
.WAITING::after {
content: "WAITING";
color: gray;
}
.MEETING::after {
content: "MEETING";
color: gray;
}
.INACTIVE::after {
content: "INACTIVE";
color: orange;
}
.NEXT::after {
content: "NEXT";
color: red;
}
.CANCELLED::after {
content: "CANCELLED";
color: green;
}
.DONE::after {
content: "DONE";
color: green;
}
</style>
|