-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlainTasks.hidden-color-scheme
111 lines (105 loc) · 3.06 KB
/
PlainTasks.hidden-color-scheme
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
{
"variables":
{
"task_pending": "rgba(0, 0, 0, 1.0)",
"task_completed": "rgba(0, 0, 0, 0.4)",
"task_cancelled": "rgba(128, 0, 0, 0.4)",
},
"globals":
{
"line_highlight": "rgba(0, 0, 0, 0.06))",
"foreground": "rgba(0, 0, 0, 0.9)",
"background": "rgb(255, 255, 255)",
"caret": "rgb(0, 0, 0)",
"selection": "rgb(186, 214, 253)",
},
"rules":
[
{
"scope": "wordhighlight",
"background": "rgba(255, 255, 0, 0.5)",
"foreground": "rgb(0, 0, 0)",
},
// Header:
{
"scope": "keyword.control.header.todo",
"foreground": "rgb(64, 64, 255)",
"font_style": "bold",
},
// Pending
{
"scope": "punctuation.definition.bullet.pending",
"foreground": "var(task_pending)",
},
{
"scope": "meta.item.todo.pending",
"foreground": "var(task_pending)",
},
// Completed
{
"scope": "punctuation.definition.bullet.completed",
"foreground": "var(task_completed)",
},
{
"scope": "meta.item.todo.completed",
"foreground": "var(task_completed)",
"font_style": "italic",
},
{
"scope": "meta.tag.todo.completed",
"foreground": "var(task_completed)",
"font_style": "italic",
},
// Cancelled
{
"scope": "punctuation.definition.bullet.cancelled",
"foreground": "var(task_cancelled)",
},
{
"scope": "meta.item.todo.cancelled",
"foreground": "var(task_cancelled)",
"font_style": "italic",
},
{
"scope": "meta.tag.todo.cancelled",
"foreground": "var(task_cancelled)",
"font_style": "italic",
},
// Separators
{
"scope": "meta.punctuation.separator.todo",
"foreground": "rgba(64, 64, 255, 1.0)",
},
{
"scope": "meta.punctuation.archive.todo",
"foreground": "rgb(0, 0, 0)",
},
// @tags
{
"scope": "meta.tag.todo",
"foreground": "rgba(128, 128, 255, 0.8)",
"font_style": "bold",
},
{
"scope": "string.other.tag.todo.today",
"foreground": "rgb(255, 0, 0)",
"background": "rgba(255, 0, 0, 0.25)",
"font_style": "bold",
},
{
"scope": "string.other.tag.todo.critical",
"foreground": "rgba(255, 0, 0, 0.95)",
"background": "rgba(255, 0, 0, 0.2)",
},
{
"scope": "string.other.tag.todo.high",
"foreground": "rgba(192, 64, 0, 0.75)",
"background": "rgba(255, 128, 0, 0.25)",
},
{
"scope": "string.other.tag.todo.low",
"foreground": "rgba(192, 128, 0, 0.75)",
"background": "rgba(255, 192, 0, 0.25)",
},
]
}