-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathAlabaster.sublime-color-scheme
82 lines (71 loc) · 2.57 KB
/
Alabaster.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
{
"name": "Alabaster",
"author": "Nikita Prokopov",
"variables":
{
"active": "#007ACC",
"selection": "#BFDBFE",
"blue": "#325CC0",
"green": "#448C27",
"red": "#AA3731",
"magenta": "#7A3E9D",
"grey": "#777",
"orange": "#FFBC5D"
},
"globals":
{
"foreground": "#000000",
"background": "#F7F7F7",
"caret": "var(active)",
"line_highlight": "#f0f0f0",
"misspelling": "var(red)",
"selection": "var(selection)",
"selection_border_width": "0",
"inactive_selection": "#E0E0E0",
"selection_corner_radius": "2",
"highlight": "var(orange)",
"find_highlight_foreground": "#000",
"find_highlight": "var(orange)",
"brackets_options": "foreground underline",
"brackets_foreground": "var(active)",
"bracket_contents_options": "foreground underline",
"bracket_contents_foreground": "var(active)",
"tags_options": "foreground",
"tags_foreground": "var(active)"
},
"rules":
[
{"name": "Comment",
"scope": "comment, punctuation.definition.comment",
"foreground": "var(red)"},
{"name": "String",
"scope": "string",
"foreground": "var(green)"},
{"name": "Escapes",
"scope": "constant.character.escape, constant.other.placeholder",
"foreground": "var(grey)"},
{"name": "Punctuation",
"scope": "punctuation",
"foreground": "var(grey)"},
{"name": "Constants",
"scope": "constant",
"foreground": "var(magenta)"},
{"name": "Definitions",
"scope": "entity.name",
"foreground": "var(blue)"},
{"name": "Mistakes",
"scope": "invalid",
"foreground": "var(red)",
"background": "color(var(red) alpha(0.2))"},
{"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"}
]
}