-
-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
133 changed files
with
5,327 additions
and
2,253 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,313 @@ | ||
{ | ||
"name": "Ariana", | ||
"author": "DisposaBoy, Sublime HQ Pty Ltd, Dmitri Voronianski", | ||
"variables": | ||
{ | ||
"black": "hsl(0, 0%, 0%)", | ||
"blue": "hsl(210, 50%, 60%)", | ||
"blue2": "hsl(209, 13%, 35%)", | ||
"blue3": "hsl(210, 36%, 21%)", | ||
"blue4": "hsl(210, 13%, 45%)", | ||
"blue5": "hsl(180, 36%, 54%)", | ||
"blue6": "hsl(221, 12%, 69%)", | ||
"green": "hsl(114, 31%, 68%)", | ||
"grey": "hsl(0, 0%, 20%)", | ||
"orange": "hsl(32, 93%, 66%)", | ||
"orange2": "hsl(32, 85%, 55%)", | ||
"orange3": "hsl(40, 94%, 68%)", | ||
"pink": "hsl(300, 30%, 68%)", | ||
"red": "hsl(357, 79%, 65%)", | ||
"red2": "hsl(13, 93%, 66%)", | ||
"white": "hsl(0, 0%, 100%)", | ||
"white2": "hsl(0, 0%, 97%)", | ||
"white3": "hsl(219, 28%, 88%)" | ||
}, | ||
"globals": | ||
{ | ||
"foreground": "var(white3)", | ||
"background": "var(blue3)", | ||
"caret": "var(orange)", | ||
"line_highlight": "var(blue2)", | ||
"selection": "var(blue2)", | ||
"selection_border": "var(blue4)", | ||
"inactive_selection": "var(blue2)", | ||
"misspelling": "var(red)", | ||
"shadow": "color(var(black) alpha(0.25))", | ||
"active_guide": "var(blue5)", | ||
"stack_guide": "color(var(blue5) alpha(0.5))", | ||
"highlight": "var(blue5)", | ||
"find_highlight_foreground": "var(grey)", | ||
"find_highlight": "var(orange3)", | ||
"brackets_options": "underline", | ||
"brackets_foreground": "var(orange)", | ||
"bracket_contents_options": "underline", | ||
"bracket_contents_foreground": "var(blue5)", | ||
"tags_options": "stippled_underline", | ||
"tags_foreground": "var(pink)" | ||
}, | ||
"rules": | ||
[ | ||
{ | ||
"name": "Comment", | ||
"scope": "comment, punctuation.definition.comment", | ||
"foreground": "var(blue6)" | ||
}, | ||
{ | ||
"name": "String", | ||
"scope": "string", | ||
"foreground": "var(green)" | ||
}, | ||
{ | ||
"name": "Punctuation", | ||
"scope": "punctuation.definition", | ||
"foreground": "var(blue5)" | ||
}, | ||
{ | ||
"name": "Number", | ||
"scope": "constant.numeric", | ||
"foreground": "var(orange)" | ||
}, | ||
{ | ||
"name": "Built-in constant", | ||
"scope": "constant.language", | ||
"foreground": "var(red)", | ||
"font_style": "italic" | ||
}, | ||
{ | ||
"name": "User-defined constant", | ||
"scope": "constant.character, constant.other", | ||
"foreground": "var(pink)" | ||
}, | ||
{ | ||
"name": "Member Variable", | ||
"scope": "variable.member", | ||
"foreground": "var(red)" | ||
}, | ||
{ | ||
"name": "Keyword", | ||
"scope": "keyword - keyword.operator, keyword.operator.word", | ||
"foreground": "var(pink)" | ||
}, | ||
{ | ||
"name": "Operators", | ||
"scope": "keyword.operator", | ||
"foreground": "var(red2)" | ||
}, | ||
{ | ||
"name": "Punctuation", | ||
"scope": "punctuation.separator, punctuation.terminator", | ||
"foreground": "var(blue6)" | ||
}, | ||
{ | ||
"name": "Punctuation", | ||
"scope": "punctuation.section", | ||
"foreground": "var(white)" | ||
}, | ||
{ | ||
"name": "Accessor", | ||
"scope": "punctuation.accessor", | ||
"foreground": "var(blue6)" | ||
}, | ||
{ | ||
"name": "Annotation Punctuation", | ||
"scope": "punctuation.definition.annotation", | ||
"foreground": "var(blue5)" | ||
}, | ||
{ | ||
"name": "JavaScript Dollar", | ||
"scope": "variable.other.dollar.only.js, variable.other.object.dollar.only.js, variable.type.dollar.only.js, support.class.dollar.only.js", | ||
"foreground": "var(blue5)" | ||
}, | ||
{ | ||
"name": "Storage", | ||
"scope": "storage", | ||
"foreground": "var(red)" | ||
}, | ||
{ | ||
"name": "Storage type", | ||
"scope": "storage.type", | ||
"foreground": "var(pink)", | ||
"font_style": "italic" | ||
}, | ||
{ | ||
"name": "Entity name", | ||
"scope": "entity.name.function", | ||
"foreground": "var(blue5)" | ||
}, | ||
{ | ||
"name": "Entity name", | ||
"scope": "entity.name - (entity.name.section | entity.name.tag | entity.name.label)", | ||
"foreground": "var(orange)" | ||
}, | ||
{ | ||
"name": "Inherited class", | ||
"scope": "entity.other.inherited-class", | ||
"foreground": "var(blue5)", | ||
"font_style": "italic underline" | ||
}, | ||
{ | ||
"name": "Function argument", | ||
"scope": "variable.parameter", | ||
"foreground": "var(orange)" | ||
}, | ||
{ | ||
"name": "Language variable", | ||
"scope": "variable.language", | ||
"foreground": "var(red)", | ||
"font_style": "italic" | ||
}, | ||
{ | ||
"name": "Tag name", | ||
"scope": "entity.name.tag", | ||
"foreground": "var(red)" | ||
}, | ||
{ | ||
"name": "Tag attribute", | ||
"scope": "entity.other.attribute-name", | ||
"foreground": "var(pink)" | ||
}, | ||
{ | ||
"name": "Function call", | ||
"scope": "variable.function, variable.annotation", | ||
"foreground": "var(blue)" | ||
}, | ||
{ | ||
"name": "Library function", | ||
"scope": "support.function, support.macro", | ||
"foreground": "var(blue)", | ||
"font_style": "italic" | ||
}, | ||
{ | ||
"name": "Library constant", | ||
"scope": "support.constant", | ||
"foreground": "var(pink)", | ||
"font_style": "italic" | ||
}, | ||
{ | ||
"name": "Library class/type", | ||
"scope": "support.type, support.class", | ||
"foreground": "var(blue)", | ||
"font_style": "italic" | ||
}, | ||
{ | ||
"name": "Invalid", | ||
"scope": "invalid", | ||
"foreground": "var(white2)", | ||
"background": "var(red)" | ||
}, | ||
{ | ||
"name": "Invalid deprecated", | ||
"scope": "invalid.deprecated", | ||
"foreground": "var(white2)", | ||
"background": "var(orange2)" | ||
}, | ||
{ | ||
"name": "YAML Key", | ||
"scope": "entity.name.tag.yaml", | ||
"foreground": "var(blue5)" | ||
}, | ||
{ | ||
"name": "YAML String", | ||
"scope": "source.yaml string.unquoted", | ||
"foreground": "var(white3)" | ||
}, | ||
{ | ||
"name": "markup headings", | ||
"scope": "markup.heading", | ||
"font_style": "bold" | ||
}, | ||
{ | ||
"name": "markup headings", | ||
"scope": "markup.heading punctuation.definition.heading", | ||
"foreground": "var(red2)" | ||
}, | ||
{ | ||
"name": "markup h1", | ||
"scope": "markup.heading.1 punctuation.definition.heading", | ||
"foreground": "var(red)" | ||
}, | ||
{ | ||
"name": "markup links", | ||
"scope": "string.other.link, markup.underline.link", | ||
"foreground": "var(blue)" | ||
}, | ||
{ | ||
"name": "markup bold", | ||
"scope": "markup.bold", | ||
"font_style": "bold" | ||
}, | ||
{ | ||
"name": "markup italic", | ||
"scope": "markup.italic", | ||
"font_style": "italic" | ||
}, | ||
{ | ||
"name": "markup bold/italic", | ||
"scope": "markup.italic markup.bold | markup.bold markup.italic", | ||
"font_style": "bold italic" | ||
}, | ||
{ | ||
"name": "markup hr", | ||
"scope": "punctuation.definition.thematic-break", | ||
"foreground": "var(orange)" | ||
}, | ||
{ | ||
"name": "markup numbered list bullet", | ||
"scope": "markup.list.numbered.bullet", | ||
"foreground": "var(green)" | ||
}, | ||
{ | ||
"name": "markup blockquote", | ||
"scope": "markup.quote punctuation.definition.blockquote, markup.list punctuation.definition.list_item", | ||
"foreground": "var(orange)" | ||
}, | ||
{ | ||
"name": "markup code", | ||
"scope": "markup.raw", | ||
"background": "color(var(blue2) alpha(0.38))" | ||
}, | ||
{ | ||
"name": "markup code", | ||
"scope": "markup.raw.inline", | ||
"background": "color(var(blue2) alpha(0.5))" | ||
}, | ||
{ | ||
"name": "markup punctuation", | ||
"scope": "(text punctuation.definition.italic | text punctuation.definition.bold)", | ||
"foreground": "var(pink)" | ||
}, | ||
{ | ||
"name": "diff.header", | ||
"scope": "meta.diff, meta.diff.header", | ||
"foreground": "var(pink)" | ||
}, | ||
{ | ||
"name": "diff.deleted", | ||
"scope": "markup.deleted", | ||
"foreground": "var(red)" | ||
}, | ||
{ | ||
"name": "diff.inserted", | ||
"scope": "markup.inserted", | ||
"foreground": "var(green)" | ||
}, | ||
{ | ||
"name": "diff.changed", | ||
"scope": "markup.changed", | ||
"foreground": "var(orange)" | ||
}, | ||
{ | ||
"name": "CSS Properties", | ||
"scope": "support.type.property-name", | ||
"foreground": "var(white3)" | ||
}, | ||
{ | ||
"scope": "constant.numeric.line-number.match", | ||
"foreground": "var(red)" | ||
}, | ||
{ | ||
"scope": "message.error", | ||
"foreground": "var(red)" | ||
} | ||
] | ||
} |
Oops, something went wrong.