-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathxit-dark.sublime-color-scheme.EXAMPLE
118 lines (109 loc) · 3.44 KB
/
xit-dark.sublime-color-scheme.EXAMPLE
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
{
// https://www.sublimetext.com/docs/color_schemes.html
// These are [x]it!-specific colours for the Monokai scheme.
// They should also work well with most other dark schemes.
"variables": {
"xit_checkbox_open": "#73daff",
"xit_checkbox_checked": "#f199ff",
"xit_checkbox_ongoing": "#a9ff6b",
"xit_checkbox_obsolete": "#777777",
"xit_checkbox_in_question": "#ebde34",
"xit_title": "#ffffff",
"xit_description": "#bfd2d9",
"xit_priority": "#ff0550",
"xit_due_date": "#d9f0a8",
"xit_tag_bg": "#393939",
},
"rules": [
{
"scope": "source.xit",
"foreground": "#ffffff",
},
// Title
{
"scope": "markup.other.title.xit",
"foreground": "var(xit_title)",
"font_style": "underline"
},
// Checkboxes
{
"scope": "markup.other.checkbox.open.xit",
"foreground": "var(xit_checkbox_open)",
"font_style": "bold"
}, {
"scope": "markup.other.checkbox.checked.xit",
"foreground": "var(xit_checkbox_ongoing)",
"font_style": "bold"
}, {
"scope": "markup.other.checkbox.ongoing.xit",
"foreground": "var(xit_checkbox_checked)",
"font_style": "bold"
}, {
"scope": "markup.other.checkbox.obsolete.xit",
"foreground": "var(xit_checkbox_obsolete)",
"font_style": "bold"
}, {
"scope": "markup.other.checkbox.in-question.xit",
"foreground": "var(xit_checkbox_in_question)",
"font_style": "bold"
},
// Priority
{
"scope": "markup.other.priority.exclamation.xit",
"foreground": "var(xit_priority)",
"font_style": "bold"
}, {
"scope": "meta.item.status.obsolete.xit markup.other.priority.exclamation.xit",
"foreground": "color(var(xit_priority) alpha(0.35))"
}, {
"scope": "meta.item.status.checked.xit markup.other.priority.exclamation.xit",
"foreground": "color(var(xit_priority) alpha(0.35))"
}, {
"scope": "markup.other.priority.dot.xit",
"foreground": "color(var(xit_priority) alpha(0.5))"
},
// Description
{
"scope": "meta.item.status.open.xit markup.other.description.xit",
"foreground": "color(var(xit_description) alpha(1.0))"
}, {
"scope": "meta.item.status.checked.xit markup.other.description.xit",
"foreground": "color(var(xit_description) alpha(0.5))"
}, {
"scope": "meta.item.status.ongoing.xit markup.other.description.xit",
"foreground": "color(var(xit_description) alpha(1.0))"
}, {
"scope": "meta.item.status.obsolete.xit markup.other.description.xit",
"foreground": "color(var(xit_description) alpha(0.5))"
}, {
"scope": "meta.item.status.in-question.xit markup.other.description.xit",
"foreground": "color(var(xit_description) alpha(1.0))"
},
// Due date
{
"scope": "meta.item.status.open.xit markup.other.due_date.xit",
"foreground": "color(var(xit_due_date) alpha(1.0))"
}, {
"scope": "meta.item.status.checked.xit markup.other.due_date.xit",
"foreground": "color(var(xit_due_date) alpha(0.5))"
}, {
"scope": "meta.item.status.ongoing.xit markup.other.due_date.xit",
"foreground": "color(var(xit_due_date) alpha(1.0))"
}, {
"scope": "meta.item.status.obsolete.xit markup.other.due_date.xit",
"foreground": "color(var(xit_due_date) alpha(0.5))"
}, {
"scope": "meta.item.status.in-question.xit markup.other.due_date.xit",
"foreground": "color(var(xit_due_date) alpha(1.0))"
},
// Tag
{
"scope": "markup.other.tag.name.xit",
"background": "var(xit_tag_bg)",
}, {
"scope": "markup.other.tag.value.xit",
"font_style": "italic",
"background": "var(xit_tag_bg)",
}
]
}