-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlastDark.sublime-color-scheme
194 lines (194 loc) · 4.54 KB
/
BlastDark.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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/*
This theme is only a port of the original VS Code theme made by HitBlast.
Thanks for giving me permission to port this amazing theme to Sublime <3
*/
{
"name":"Blast Dark",
// global settings.
"globals" :
{
"background":"#18191d",
"foreground":"#e0e6fc",
"caret":"white",
"misspelling":"#fd6c84",
"accent":"#18191d",
"gutter":"#10141c",
"gutter_foreground":"#e0e6fc35",
"gutter_foreground_highlight":"#111",
"line_diff_width":"2",
"selection":"#e0e6fc15",
"selection_border":"#e0e6fc65",
"highlight":"#e0e6fc",
"find_highlight":"#e0e6fc35",
"guide": "#6c73804d",
"active_guide": "#6c738080",
"stack_guide": "#6c738066",
"shadow": "#10141c4d",
"shadow_width": "3"
},
"rules": [
{
"name": "Comment",
"scope": "comment",
"font_style": "italic",
"foreground": "#404c52"
},
{
"name": "Variable",
"scope": "variable",
"foreground": "#e4ffff"
},
{
"name": "Number",
"scope": "constant.numeric",
"foreground": "#ffb491"
},
{
"name": "Function arguments",
"scope": "variable.parameter, meta.parameter",
"foreground": "#ffb491"
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"foreground": "#ffb491"
},
{
"name": "Built-in constants",
"scope": "constant.language",
"foreground": "#ffb491"
},
{
"name": "String",
"scope": "string - meta.template, constant.other.symbol, string.quoted",
"foreground": "#ddf5b9"
},
{
"name": "Inherited class type",
"scope": "entity.other.inherited-class",
"foreground": "#ddf5b9"
},
{
"name": "Markup heading",
"scope": "markup.heading, markup.heading entity.name",
"font_style": "bold",
"foreground": "#ddf5b9"
},
{
"name": "Library class/type",
"scope": "support.type, support.class, source.go storage.type",
"foreground": "#ffda97"
},
{
"name": "CSS Properties",
"scope": "support.type.property-name",
"font_style": "normal",
"foreground": "#B2CCD6"
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"foreground": "#ffd689",
"font_style":"italic"
},
{
"name": "CSS tag names",
"scope": "source.css entity.name.tag, source.sass entity.name.tag, source.scss entity.name.tag, source.less entity.name.tag, source.stylus entity.name.tag",
"foreground": "#59c2ff"
},
{
"name": "Markup added",
"scope": "markup.inserted",
"foreground": "#ddf5b9"
},
{
"name": "Markup removed",
"scope": "markup.deleted",
"foreground": "#e75e75"
},
{
"name": "Markup modified",
"scope": "markup.changed",
"foreground": "#C792EA"
},
{
"name": "Regular Expressions and Escape Characters",
"scope": "string.regexp, constant.character, constant.other",
"foreground": "#89DDFF"
},
{
"name": "Markup heading",
"scope": "markup.heading, markup.heading entity.name",
"font_style": "bold",
"foreground": "#ddf5b9"
},
{
"name": "Markup Italic",
"scope": "markup.italic",
"font_style": "italic",
"foreground": "#ffb0b4"
},
{
"name": "Markup links",
"scope": "markup.underline.link, string.other.link",
"foreground": "#94b4fa"
},
{
"name": "Markup Bold/italic",
"scope": "markup.italic markup.bold, markup.bold markup.italic",
"font_style": "bold italic",
"foreground": "#ffb0b4"
},
{
"name": "Markup Bold",
"scope": "markup.bold",
"font_style": "bold",
"foreground": "#ffb0b4"
},
{
"name": "Markup Raw Inline",
"scope": "text.html.markdown markup.inline.raw",
"foreground": "#C792EA"
},
{
"name": "Function name",
"scope": "entity.name.function",
"foreground": "#afc7fc"
},
{
"name": "Function call",
"scope": "variable.function, variable.annotation, meta.function-call.generic, support.function.go",
"foreground": "#afc7fc"
},
{
"name": "Library function",
"scope": "support.function, support.macro",
"foreground": "#afc7fc"
},
{
"name": "Invalid",
"scope": "invalid",
"foreground": "#fd6c84"
},
{
"name": "Keyword",
"scope": "keyword",
"foreground": "#e2b8fd"
},
{
"name": "Operators",
"scope": "keyword.operator",
"foreground": "#d0f2ff"
},
{
"name": "Tag",
"scope": "entity.name.tag, meta.tag.sgml",
"foreground": "#f58288"
},
{
"name": "Imports and packages",
"scope": "entity.name.import, entity.name.package",
"foreground": "#e75e75"
},
]
}