Skip to content

Commit e1cd2a7

Browse files
authored
18.11.28
2 parents e2af65c + 8d16314 commit e1cd2a7

133 files changed

Lines changed: 5327 additions & 2253 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Ariana.sublime-color-scheme

Lines changed: 313 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,313 @@
1+
{
2+
"name": "Ariana",
3+
"author": "DisposaBoy, Sublime HQ Pty Ltd, Dmitri Voronianski",
4+
"variables":
5+
{
6+
"black": "hsl(0, 0%, 0%)",
7+
"blue": "hsl(210, 50%, 60%)",
8+
"blue2": "hsl(209, 13%, 35%)",
9+
"blue3": "hsl(210, 36%, 21%)",
10+
"blue4": "hsl(210, 13%, 45%)",
11+
"blue5": "hsl(180, 36%, 54%)",
12+
"blue6": "hsl(221, 12%, 69%)",
13+
"green": "hsl(114, 31%, 68%)",
14+
"grey": "hsl(0, 0%, 20%)",
15+
"orange": "hsl(32, 93%, 66%)",
16+
"orange2": "hsl(32, 85%, 55%)",
17+
"orange3": "hsl(40, 94%, 68%)",
18+
"pink": "hsl(300, 30%, 68%)",
19+
"red": "hsl(357, 79%, 65%)",
20+
"red2": "hsl(13, 93%, 66%)",
21+
"white": "hsl(0, 0%, 100%)",
22+
"white2": "hsl(0, 0%, 97%)",
23+
"white3": "hsl(219, 28%, 88%)"
24+
},
25+
"globals":
26+
{
27+
"foreground": "var(white3)",
28+
"background": "var(blue3)",
29+
"caret": "var(orange)",
30+
"line_highlight": "var(blue2)",
31+
"selection": "var(blue2)",
32+
"selection_border": "var(blue4)",
33+
"inactive_selection": "var(blue2)",
34+
"misspelling": "var(red)",
35+
"shadow": "color(var(black) alpha(0.25))",
36+
"active_guide": "var(blue5)",
37+
"stack_guide": "color(var(blue5) alpha(0.5))",
38+
"highlight": "var(blue5)",
39+
"find_highlight_foreground": "var(grey)",
40+
"find_highlight": "var(orange3)",
41+
"brackets_options": "underline",
42+
"brackets_foreground": "var(orange)",
43+
"bracket_contents_options": "underline",
44+
"bracket_contents_foreground": "var(blue5)",
45+
"tags_options": "stippled_underline",
46+
"tags_foreground": "var(pink)"
47+
},
48+
"rules":
49+
[
50+
{
51+
"name": "Comment",
52+
"scope": "comment, punctuation.definition.comment",
53+
"foreground": "var(blue6)"
54+
},
55+
{
56+
"name": "String",
57+
"scope": "string",
58+
"foreground": "var(green)"
59+
},
60+
{
61+
"name": "Punctuation",
62+
"scope": "punctuation.definition",
63+
"foreground": "var(blue5)"
64+
},
65+
{
66+
"name": "Number",
67+
"scope": "constant.numeric",
68+
"foreground": "var(orange)"
69+
},
70+
{
71+
"name": "Built-in constant",
72+
"scope": "constant.language",
73+
"foreground": "var(red)",
74+
"font_style": "italic"
75+
},
76+
{
77+
"name": "User-defined constant",
78+
"scope": "constant.character, constant.other",
79+
"foreground": "var(pink)"
80+
},
81+
{
82+
"name": "Member Variable",
83+
"scope": "variable.member",
84+
"foreground": "var(red)"
85+
},
86+
{
87+
"name": "Keyword",
88+
"scope": "keyword - keyword.operator, keyword.operator.word",
89+
"foreground": "var(pink)"
90+
},
91+
{
92+
"name": "Operators",
93+
"scope": "keyword.operator",
94+
"foreground": "var(red2)"
95+
},
96+
{
97+
"name": "Punctuation",
98+
"scope": "punctuation.separator, punctuation.terminator",
99+
"foreground": "var(blue6)"
100+
},
101+
{
102+
"name": "Punctuation",
103+
"scope": "punctuation.section",
104+
"foreground": "var(white)"
105+
},
106+
{
107+
"name": "Accessor",
108+
"scope": "punctuation.accessor",
109+
"foreground": "var(blue6)"
110+
},
111+
{
112+
"name": "Annotation Punctuation",
113+
"scope": "punctuation.definition.annotation",
114+
"foreground": "var(blue5)"
115+
},
116+
{
117+
"name": "JavaScript Dollar",
118+
"scope": "variable.other.dollar.only.js, variable.other.object.dollar.only.js, variable.type.dollar.only.js, support.class.dollar.only.js",
119+
"foreground": "var(blue5)"
120+
},
121+
{
122+
"name": "Storage",
123+
"scope": "storage",
124+
"foreground": "var(red)"
125+
},
126+
{
127+
"name": "Storage type",
128+
"scope": "storage.type",
129+
"foreground": "var(pink)",
130+
"font_style": "italic"
131+
},
132+
{
133+
"name": "Entity name",
134+
"scope": "entity.name.function",
135+
"foreground": "var(blue5)"
136+
},
137+
{
138+
"name": "Entity name",
139+
"scope": "entity.name - (entity.name.section | entity.name.tag | entity.name.label)",
140+
"foreground": "var(orange)"
141+
},
142+
{
143+
"name": "Inherited class",
144+
"scope": "entity.other.inherited-class",
145+
"foreground": "var(blue5)",
146+
"font_style": "italic underline"
147+
},
148+
{
149+
"name": "Function argument",
150+
"scope": "variable.parameter",
151+
"foreground": "var(orange)"
152+
},
153+
{
154+
"name": "Language variable",
155+
"scope": "variable.language",
156+
"foreground": "var(red)",
157+
"font_style": "italic"
158+
},
159+
{
160+
"name": "Tag name",
161+
"scope": "entity.name.tag",
162+
"foreground": "var(red)"
163+
},
164+
{
165+
"name": "Tag attribute",
166+
"scope": "entity.other.attribute-name",
167+
"foreground": "var(pink)"
168+
},
169+
{
170+
"name": "Function call",
171+
"scope": "variable.function, variable.annotation",
172+
"foreground": "var(blue)"
173+
},
174+
{
175+
"name": "Library function",
176+
"scope": "support.function, support.macro",
177+
"foreground": "var(blue)",
178+
"font_style": "italic"
179+
},
180+
{
181+
"name": "Library constant",
182+
"scope": "support.constant",
183+
"foreground": "var(pink)",
184+
"font_style": "italic"
185+
},
186+
{
187+
"name": "Library class/type",
188+
"scope": "support.type, support.class",
189+
"foreground": "var(blue)",
190+
"font_style": "italic"
191+
},
192+
{
193+
"name": "Invalid",
194+
"scope": "invalid",
195+
"foreground": "var(white2)",
196+
"background": "var(red)"
197+
},
198+
{
199+
"name": "Invalid deprecated",
200+
"scope": "invalid.deprecated",
201+
"foreground": "var(white2)",
202+
"background": "var(orange2)"
203+
},
204+
{
205+
"name": "YAML Key",
206+
"scope": "entity.name.tag.yaml",
207+
"foreground": "var(blue5)"
208+
},
209+
{
210+
"name": "YAML String",
211+
"scope": "source.yaml string.unquoted",
212+
"foreground": "var(white3)"
213+
},
214+
{
215+
"name": "markup headings",
216+
"scope": "markup.heading",
217+
"font_style": "bold"
218+
},
219+
{
220+
"name": "markup headings",
221+
"scope": "markup.heading punctuation.definition.heading",
222+
"foreground": "var(red2)"
223+
},
224+
{
225+
"name": "markup h1",
226+
"scope": "markup.heading.1 punctuation.definition.heading",
227+
"foreground": "var(red)"
228+
},
229+
{
230+
"name": "markup links",
231+
"scope": "string.other.link, markup.underline.link",
232+
"foreground": "var(blue)"
233+
},
234+
{
235+
"name": "markup bold",
236+
"scope": "markup.bold",
237+
"font_style": "bold"
238+
},
239+
{
240+
"name": "markup italic",
241+
"scope": "markup.italic",
242+
"font_style": "italic"
243+
},
244+
{
245+
"name": "markup bold/italic",
246+
"scope": "markup.italic markup.bold | markup.bold markup.italic",
247+
"font_style": "bold italic"
248+
},
249+
{
250+
"name": "markup hr",
251+
"scope": "punctuation.definition.thematic-break",
252+
"foreground": "var(orange)"
253+
},
254+
{
255+
"name": "markup numbered list bullet",
256+
"scope": "markup.list.numbered.bullet",
257+
"foreground": "var(green)"
258+
},
259+
{
260+
"name": "markup blockquote",
261+
"scope": "markup.quote punctuation.definition.blockquote, markup.list punctuation.definition.list_item",
262+
"foreground": "var(orange)"
263+
},
264+
{
265+
"name": "markup code",
266+
"scope": "markup.raw",
267+
"background": "color(var(blue2) alpha(0.38))"
268+
},
269+
{
270+
"name": "markup code",
271+
"scope": "markup.raw.inline",
272+
"background": "color(var(blue2) alpha(0.5))"
273+
},
274+
{
275+
"name": "markup punctuation",
276+
"scope": "(text punctuation.definition.italic | text punctuation.definition.bold)",
277+
"foreground": "var(pink)"
278+
},
279+
{
280+
"name": "diff.header",
281+
"scope": "meta.diff, meta.diff.header",
282+
"foreground": "var(pink)"
283+
},
284+
{
285+
"name": "diff.deleted",
286+
"scope": "markup.deleted",
287+
"foreground": "var(red)"
288+
},
289+
{
290+
"name": "diff.inserted",
291+
"scope": "markup.inserted",
292+
"foreground": "var(green)"
293+
},
294+
{
295+
"name": "diff.changed",
296+
"scope": "markup.changed",
297+
"foreground": "var(orange)"
298+
},
299+
{
300+
"name": "CSS Properties",
301+
"scope": "support.type.property-name",
302+
"foreground": "var(white3)"
303+
},
304+
{
305+
"scope": "constant.numeric.line-number.match",
306+
"foreground": "var(red)"
307+
},
308+
{
309+
"scope": "message.error",
310+
"foreground": "var(red)"
311+
}
312+
]
313+
}

0 commit comments

Comments
 (0)