-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Alabaster Dark Mono.sublime-color-scheme
93 lines (79 loc) · 3.57 KB
/
Alabaster Dark Mono.sublime-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
{
"name": "Alabaster Dark Mono",
"author": "Nikita Prokopov",
"variables":
{
"middle": "#999",
"bright": "#EEE",
"dark": "#333",
"active": "#CD974B",
// "active": "#16BDEC"
},
"globals":
{
"foreground": "var(middle)",
"background": "#111",
"caret": "var(active)",
"line_highlight": "#ffffff0C",
"misspelling": "#f00",
"selection": "#ffffff20",
// "selection_foreground": "#fff",
"selection_border_width": "0",
"selection_corner_radius": "2",
"highlight": "var(active)",
"find_highlight_foreground": "#000",
"find_highlight": "var(active)",
"brackets_options": "underline",
"brackets_foreground": "var(active)",
"bracket_contents_options": "underline",
"bracket_contents_foreground": "var(active)",
"tags_options": "underline",
"tags_foreground": "var(active)",
},
"rules":
[
{"name": "Comments",
"scope": "comment, punctuation.definition.comment, invalid comment",
// "foreground": "var(bright)",
"background": "var(dark)"},
{"name": "Strings",
"scope": "string, string punctuation",
"foreground": "var(bright)"},
{"name": "Escapes \n",
"scope": "constant.character.escape, constant.other.placeholder",
"background": "#ffffff20"},
// {"name": "Constants",
// "scope": "constant",
// "background": "#F9E0FF"},
{"name": "Constants",
"scope": "constant, punctuation.definition.constant",
"foreground": "var(bright)"},
{"name": "Definitions",
"scope": "entity.name - entity.name.tag",
"foreground": "var(bright)",
"background": "var(dark)"},
// {"name": "Punctuation",
// "scope": "punctuation - punctuation.section, keyword.operator",
// "foreground": "var(dark)"},
{"name": "Outer brackets",
"scope": "meta.parens punctuation.section, meta.brackets punctuation.section, meta.braces punctuation.section",
"foreground": "var(bright)"},
{"name": "Inner brackets",
"scope": "meta.parens meta.parens punctuation.section, meta.parens meta.brackets punctuation.section, meta.parens meta.braces punctuation.section, meta.brackets meta.parens punctuation.section, meta.brackets meta.brackets punctuation.section, meta.brackets meta.braces punctuation.section, meta.braces meta.parens punctuation.section, meta.braces meta.brackets punctuation.section, meta.braces meta.braces punctuation.section",
"foreground": "var(middle)"},
{"name": "Mistakes",
"scope": "invalid, invalid string, invalid constant, invalid entity.name, invalid punctuation, invalid source.symbol",
"foreground": "#c33",
"background": "#2B1D1E"},
{"scope": "markup.inserted",
"foreground": "hsl(100, 50%, 50%)"},
{"scope": "markup.deleted",
"foreground": "hsl(2, 65%, 50%)"},
{"scope": "markup.changed",
"foreground": "hsl(30, 85%, 50%)"},
{"scope": "markup.ignored",
"foreground": "#aaa"},
{"scope": "markup.untracked",
"foreground": "#aaa"}
]
}