Merge pull request #214 from danvirsen/master

Added patterns for vscode
This commit is contained in:
Dayle Rees 2017-11-29 19:58:38 +00:00 committed by GitHub
commit 613662b9d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
179 changed files with 41037 additions and 0 deletions

View File

@ -19,6 +19,7 @@ This package currently supports colour schemes for:
- [Highlight JS](http://highlightjs.org/)
- [Xcode](https://developer.apple.com/xcode/)
- [Bootstrap](http://getbootstrap.com/)
- [Visual Studio Code](https://code.visualstudio.com/)
- Previews - HTML previews of all schemes.
## Preview
@ -59,6 +60,7 @@ Installation of the colour schemes depends greatly upon the type of software tha
* [Textmate 2](#textmate-2)
* [VIM](#vim)
* [Xcode Colour Schemes](#xcode-colour-schemes)
* [Visual Studio Code](#visual-studio-code)
### Sublime Text
@ -176,6 +178,10 @@ and you can then select it using `m-x load-theme` or set it as the default.
*Heads up. It'll ask you whether you really want to load the theme because it involves running lisp code. Feel free to check everything's safe before you do*
### Visual Studio Code
Copy the theme you want from the `vscode` directory to `~/.vscode/extensions` (Mac/Linux) or `%USERPROFILE%\.vscode\extensions` (Windows). Start vscode (or reload the window) and select the theme in your preferences.
## Requests
- **Hyrule** - Requested by Taylor Otwell of Laravel, a Zelda theme!

View File

@ -14,6 +14,7 @@
<delete dir="${basedir}/xcode"/>
<delete dir="${basedir}/highlightjs"/>
<delete dir="${basedir}/emacs"/>
<delete dir="${basedir}/vscode"/>
</target>
<!-- Generate themes. -->

View File

@ -0,0 +1,27 @@
{% set uiTheme = 'vs' %}
{% set uiTheme = theme.type == 'dark' ? 'vs-dark' : uiTheme %}
{% set uiTheme = theme.dir == 'contrast' ? 'hc-black' : uiTheme %}
{
"name": "{{ theme.slug }}",
"version": "1.0.0",
"displayName": "{{ theme.name }} Theme",
"description": "{{ theme.name }} theme by {{ theme.author }}",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "{{ theme.name }}",
"uiTheme": "{{ uiTheme }}",
"path": "./{{ theme.slug }}.json"
}
]
}
}

View File

@ -0,0 +1,19 @@
{
"type": "Visual Studio Code Colour Scheme",
"directory": "vscode",
"templates": [
{
"file": "package.pattern",
"name": "daylerees.theme.%theme.slug%/package",
"directory": "",
"extension": ".json"
},
{
"file": "vscode.pattern",
"name": "daylerees.theme.%theme.slug%/%theme.slug%",
"directory": "",
"extension": ".json"
}
]
}

View File

@ -0,0 +1,442 @@
{
"name": "{{ theme.slug }}",
"tokenColors": [
{
"settings": {
"background": "{{ background }}",
"foreground": "{{ foreground }}",
"selectionForeground": "{{ selection_foreground }}",
"findHighlight": "{{ find_background }}",
"findHighlightForeground": "{{ find_foreground }}",
"selectionBorder": "{{ selection_border }}",
"activeGuide": "{{ scope_guide }}",
"bracketsForeground": "{{ brackets }}",
"bracketsOptions": "underline",
"bracketContentsForeground": "{{ bracket_content }}",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "{{ comment }}"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "{{ string }}"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "{{ number }}"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "{{ second }}"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "{{ second }}"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "{{ fourth }}"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "{{ second }}"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "{{ first }}"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "{{ second }}"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "{{ second }}"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "{{ third }}"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": "{{ variables }}"
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "{{ first }}"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "{{ second }}"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "{{ fifth }}"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "{{ second }}"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "{{ second }}"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "{{ invalid_background }}",
"foreground": "{{ invalid_foreground }}",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "{{ invalid_background }}",
"foreground": "{{ invalid_foreground }}"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "{{ string }}"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "{{ docblock }}"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "{{ string }}"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "{{ second }}"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "{{ string }}"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "{{ foreground }}"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "{{ first }}"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "{{ first }}",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "{{ variables }}",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "{{ number }}",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "{{ second }}"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "{{ fourth }}"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "{{ string }}"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "{{ fourth }}"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "{{ fourth }}"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "{{ fourth }}"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "{{ first }}",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "{{ first }}"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "{{ invalid_background }}"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "{{ background }}",
"editorCursor.foreground": "{{ caret }}",
"editor.foreground": "{{ foreground }}",
"editorWhitespace.foreground": "{{ invisibles }}",
"editor.lineHighlightBackground": "{{ line_highlight }}",
"editor.selectionBackground": "{{ selection_background }}{{ selection_background|length < 9 ? '4D' : '' }}"
}
}

View File

@ -0,0 +1,442 @@
{
"name": "carbonight-contrast",
"tokenColors": [
{
"settings": {
"background": "#000000",
"foreground": "#ffffff",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#C4C4C4",
"bracketsOptions": "underline",
"bracketContentsForeground": "#8C8C8C",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#423F3D"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#B0B0B0"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#8C8C8C"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#8C8C8C"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#eeeeee"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#8C8C8C"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#C4C4C4"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#8C8C8C"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#8C8C8C"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#ffffff"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#C4C4C4"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#8C8C8C"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#ffffff"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#8C8C8C"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#8C8C8C"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#5c5856"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#ffffff"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#8C8C8C"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#C4C4C4"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#C4C4C4",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#B0B0B0",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#8C8C8C"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#eeeeee"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#eeeeee"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#eeeeee"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#eeeeee"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#C4C4C4",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#C4C4C4"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#000000",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#ffffff",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#151515",
"editor.selectionBackground": "#8C8C8C4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "carbonight-contrast",
"version": "1.0.0",
"displayName": "Carbonight Contrast Theme",
"description": "Carbonight Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Carbonight Contrast",
"uiTheme": "hc-black",
"path": "./carbonight-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "darkside-contrast",
"tokenColors": [
{
"settings": {
"background": "#000000",
"foreground": "#BABABA",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#68C244",
"bracketsOptions": "underline",
"bracketContentsForeground": "#E8341C",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#494B4D"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#F2D42C"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#8E69C9"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#E8341C"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#E8341C"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#F08D24"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#E8341C"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#1CC3E8"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#E8341C"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#E8341C"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#68C244"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#1CC3E8"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#E8341C"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#8E69C9"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#E8341C"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#E8341C"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F2D42C"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#696b6e"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#F2D42C"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#E8341C"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#F2D42C"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#BABABA"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#1CC3E8"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#1CC3E8",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#8E69C9",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#E8341C"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#F08D24"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#F2D42C"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#F08D24"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#F08D24"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#F08D24"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#1CC3E8",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#1CC3E8"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#000000",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#BABABA",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#151515",
"editor.selectionBackground": "#FF4E504D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "darkside-contrast",
"version": "1.0.0",
"displayName": "Darkside Contrast Theme",
"description": "Darkside Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Darkside Contrast",
"uiTheme": "hc-black",
"path": "./darkside-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "earthsong-contrast",
"tokenColors": [
{
"settings": {
"background": "#12100f",
"foreground": "#EBD1B7",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#DB784D",
"bracketsOptions": "underline",
"bracketContentsForeground": "#95CC5E",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#7A7267"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#DB784D"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#95CC5E"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#DB784D"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#DB784D"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#60A365"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#95CC5E"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#DB784D"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#95CC5E"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#DB784D"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#DB784D"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#9a9082"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#F8BB39"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#DB784D"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#EBD1B7"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#95CC5E"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#95CC5E",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#F8BB39",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#95CC5E",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#95CC5E"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#12100f",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#EBD1B7",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#282521",
"editor.selectionBackground": "#DB784D4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "earthsong-contrast",
"version": "1.0.0",
"displayName": "Earthsong Contrast Theme",
"description": "Earthsong Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Earthsong Contrast",
"uiTheme": "hc-black",
"path": "./earthsong-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "freshcut-contrast",
"tokenColors": [
{
"settings": {
"background": "#000000",
"foreground": "#F8F8F2",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#4ECDC4",
"bracketsOptions": "underline",
"bracketContentsForeground": "#00A8C6",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#737b84"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#e9ee00"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#8FBE00"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#C8D7E8"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#00A8C6"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#4ECDC4"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#00A8C6"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#00A8C6"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#AEE239"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#4ECDC4"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#00A8C6"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#4ECDC4"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#00A8C6"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#00A8C6"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#e9ee00"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#939da8"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#e9ee00"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#00A8C6"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#e9ee00"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#F8F8F2"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#4ECDC4"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#4ECDC4",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#8FBE00",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#C8D7E8"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#e9ee00"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#C8D7E8"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#C8D7E8"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#C8D7E8"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#4ECDC4",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#4ECDC4"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#000000",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#F8F8F2",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#151515",
"editor.selectionBackground": "#0080974D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "freshcut-contrast",
"version": "1.0.0",
"displayName": "FreshCut Contrast Theme",
"description": "FreshCut Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "FreshCut Contrast",
"uiTheme": "hc-black",
"path": "./freshcut-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "frontier-contrast",
"tokenColors": [
{
"settings": {
"background": "#110f0e",
"foreground": "#F8F8F2",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#2EBF7E",
"bracketsOptions": "underline",
"bracketContentsForeground": "#F23A3A",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#7A7267"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#2EBF7E"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#F23A3A"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#F23A3A"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#FC803D"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#F23A3A"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#2EBF7E"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#F23A3A"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#F23A3A"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#F8BB39"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#2EBF7E"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#F23A3A"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#2EBF7E"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#F23A3A"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#F23A3A"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#a59a8a"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#F8BB39"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F23A3A"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#F8F8F2"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#2EBF7E"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#2EBF7E",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#2EBF7E",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#F23A3A"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#FC803D"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#FC803D"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#FC803D"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#FC803D"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#2EBF7E",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#2EBF7E"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#110f0e",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#F8F8F2",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#221f1c",
"editor.selectionBackground": "#2EBF7E4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "frontier-contrast",
"version": "1.0.0",
"displayName": "Frontier Contrast Theme",
"description": "Frontier Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Frontier Contrast",
"uiTheme": "hc-black",
"path": "./frontier-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "gloom-contrast",
"tokenColors": [
{
"settings": {
"background": "#0f120f",
"foreground": "#D8EBE5",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#FF5D38",
"bracketsOptions": "underline",
"bracketContentsForeground": "#26A6A6",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#4F6E64"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#BCD42A"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#BCD42A"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#FF5D38"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#FF5D38"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#FF5D38"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#26A6A6"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#FF5D38"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#FF5D38"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#BCD42A"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#26A6A6"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#FF5D38"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#FF5D38"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#FF5D38"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#FF5D38"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#BCD42A"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#668e81"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#BCD42A"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#FF5D38"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#BCD42A"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#D8EBE5"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#26A6A6",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#BCD42A",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#FF5D38"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#BCD42A"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#26A6A6",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#0f120f",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#D8EBE5",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#1b211c",
"editor.selectionBackground": "#FF5D384D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "gloom-contrast",
"version": "1.0.0",
"displayName": "Gloom Contrast Theme",
"description": "Gloom Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Gloom Contrast",
"uiTheme": "hc-black",
"path": "./gloom-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "glowfish-contrast",
"tokenColors": [
{
"settings": {
"background": "#090b07",
"foreground": "#6ea240",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#DB784D",
"bracketsOptions": "underline",
"bracketContentsForeground": "#95CC5E",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#3c4e2d"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#95CC5E"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#D65940"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#DB784D"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#95CC5E"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#DB784D"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#DB784D"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#60A365"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#95CC5E"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#DB784D"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#95CC5E"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#DB784D"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#DB784D"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#67854f"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#F8BB39"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#DB784D"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#6ea240"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#95CC5E"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#95CC5E",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#95CC5E",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#D65940"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#D65940"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#D65940"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#D65940"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#95CC5E",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#95CC5E"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#090b07",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#6ea240",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#12160d",
"editor.selectionBackground": "#DB784D4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "glowfish-contrast",
"version": "1.0.0",
"displayName": "Glowfish Contrast Theme",
"description": "Glowfish Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Glowfish Contrast",
"uiTheme": "hc-black",
"path": "./glowfish-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "goldfish-contrast",
"tokenColors": [
{
"settings": {
"background": "#0c0d0e",
"foreground": "#F8F8F2",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#A7DBD8",
"bracketsOptions": "underline",
"bracketContentsForeground": "#F38630",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#505C63"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#f36e3a"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#f25619"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#FA6900"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#FA6900"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#A7DBD8"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#FA6900"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#F38630"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#FA6900"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#FA6900"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#69D2E7"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#F38630"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#FA6900"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#F38630"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#FA6900"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#FA6900"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#f36e3a"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#798891"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#f36e3a"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#FA6900"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#f36e3a"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#F8F8F2"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#F38630"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#F38630",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#f25619",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#FA6900"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#A7DBD8"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#f36e3a"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#A7DBD8"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#A7DBD8"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#A7DBD8"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#F38630",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#F38630"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#0c0d0e",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#F8F8F2",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#16181a",
"editor.selectionBackground": "#F386304D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "goldfish-contrast",
"version": "1.0.0",
"displayName": "Goldfish Contrast Theme",
"description": "Goldfish Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Goldfish Contrast",
"uiTheme": "hc-black",
"path": "./goldfish-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "grunge-contrast",
"tokenColors": [
{
"settings": {
"background": "#0c0c0a",
"foreground": "#F8F8F2",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#FFC48C",
"bracketsOptions": "underline",
"bracketContentsForeground": "#F56991",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#5C634F"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#D1F2A5"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#F56991"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#F56991"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#F56991"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#91A374"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#F56991"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#D1F2A5"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#F56991"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#F56991"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#FFC48C"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#D1F2A5"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#F56991"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#FFC48C"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#F56991"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#F56991"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#D1F2A5"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#7f886f"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#D1F2A5"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F56991"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#D1F2A5"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#F8F8F2"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#D1F2A5"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#D1F2A5",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#F56991",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#F56991"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#91A374"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#D1F2A5"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#91A374"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#91A374"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#91A374"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#D1F2A5",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#D1F2A5"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#0c0c0a",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#F8F8F2",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#1b1c18",
"editor.selectionBackground": "#F569914D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "grunge-contrast",
"version": "1.0.0",
"displayName": "Grunge Contrast Theme",
"description": "Grunge Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Grunge Contrast",
"uiTheme": "hc-black",
"path": "./grunge-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "halflife-contrast",
"tokenColors": [
{
"settings": {
"background": "#000000",
"foreground": "#cccccc",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#FC913A",
"bracketsOptions": "underline",
"bracketContentsForeground": "#7D8991",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#555555"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#F9D423"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#F9D423"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#7D8991"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#7D8991"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#7D8991"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#7D8991"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#FC913A"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#7D8991"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#7D8991"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#F9D423"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#FC913A"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#7D8991"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#F85931"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#7D8991"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#7D8991"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F9D423"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#808080"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#F9D423"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#7D8991"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#F9D423"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#cccccc"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#FC913A"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#FC913A",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#F9D423",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#7D8991"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#7D8991"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#F9D423"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#7D8991"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#7D8991"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#7D8991"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#FC913A",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#FC913A"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#000000",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#cccccc",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#151515",
"editor.selectionBackground": "#F859314D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "halflife-contrast",
"version": "1.0.0",
"displayName": "Halflife Contrast Theme",
"description": "Halflife Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Halflife Contrast",
"uiTheme": "hc-black",
"path": "./halflife-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "hyrule-contrast",
"tokenColors": [
{
"settings": {
"background": "#0c0c0c",
"foreground": "#c0d5c1",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#f5c504",
"bracketsOptions": "underline",
"bracketContentsForeground": "#569e16",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#716d6a"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#ce830d"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#f5c504"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#569e16"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#569e16"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#90c93f"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#569e16"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#f5c504"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#569e16"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#569e16"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#90c93f"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#f5c504"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#569e16"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#f5c504"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#569e16"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#569e16"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#ce830d"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#9e9a98"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#ce830d"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#569e16"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#ce830d"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#c0d5c1"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#f5c504"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#f5c504",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#f5c504",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#569e16"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#90c93f"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#ce830d"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#90c93f"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#90c93f"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#90c93f"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#f5c504",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#f5c504"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#0c0c0c",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#c0d5c1",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#141413",
"editor.selectionBackground": "#569e164D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "hyrule-contrast",
"version": "1.0.0",
"displayName": "Hyrule Contrast Theme",
"description": "Hyrule Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Hyrule Contrast",
"uiTheme": "hc-black",
"path": "./hyrule-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "iceberg-contrast",
"tokenColors": [
{
"settings": {
"background": "#0b0e0e",
"foreground": "#BDD6DB",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#59C0E3",
"bracketsOptions": "underline",
"bracketContentsForeground": "#2D8DA1",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#537178"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#FFFFFF"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#FFFFFF"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#2D8DA1"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#2D8DA1"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#B1E2F2"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#2D8DA1"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#59C0E3"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#2D8DA1"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#2D8DA1"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#FFFFFF"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#59C0E3"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#2D8DA1"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#ffffff"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#2D8DA1"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#2D8DA1"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#FFFFFF"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#79a2ab"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#FFFFFF"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#2D8DA1"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#FFFFFF"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#BDD6DB"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#59C0E3"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#59C0E3",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#FFFFFF",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#2D8DA1"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#B1E2F2"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#FFFFFF"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#B1E2F2"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#B1E2F2"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#B1E2F2"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#59C0E3",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#59C0E3"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#0b0e0e",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#BDD6DB",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#141718",
"editor.selectionBackground": "#2D8DA14D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "iceberg-contrast",
"version": "1.0.0",
"displayName": "Iceberg Contrast Theme",
"description": "Iceberg Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Iceberg Contrast",
"uiTheme": "hc-black",
"path": "./iceberg-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "juicy-contrast",
"tokenColors": [
{
"settings": {
"background": "#000000",
"foreground": "#e3e2e0",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#c3cb4c",
"bracketsOptions": "underline",
"bracketContentsForeground": "#FF4E50",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#777777"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#3bc7b8"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#CE1836"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#3bc7b8"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#3bc7b8"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#EDB92E"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#3bc7b8"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#FF4E50"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#3bc7b8"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#3bc7b8"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#c3cb4c"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#FF4E50"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#3bc7b8"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#F85931"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#3bc7b8"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#3bc7b8"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#3bc7b8"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#9b9b9b"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#3bc7b8"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#3bc7b8"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#3bc7b8"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#e3e2e0"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#FF4E50"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#FF4E50",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#CE1836",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#3bc7b8"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#EDB92E"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#3bc7b8"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#EDB92E"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#EDB92E"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#EDB92E"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#FF4E50",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#FF4E50"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#000000",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#e3e2e0",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#151515",
"editor.selectionBackground": "#FF4E504D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "juicy-contrast",
"version": "1.0.0",
"displayName": "Juicy Contrast Theme",
"description": "Juicy Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Juicy Contrast",
"uiTheme": "hc-black",
"path": "./juicy-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "keen-contrast",
"tokenColors": [
{
"settings": {
"background": "#000000",
"foreground": "#ffffff",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#6F8B94",
"bracketsOptions": "underline",
"bracketContentsForeground": "#8767b7",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#374c60"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#b5db99"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#b5db99"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#8767b7"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#8767b7"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#6F8B94"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#8767b7"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#6F8B94"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#8767b7"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#8767b7"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#b5db99"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#6F8B94"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#8767b7"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#8767b7"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#8767b7"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#8767b7"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#b5db99"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#56738e"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#b5db99"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#8767b7"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#b5db99"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#6F8B94"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#6F8B94",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#b5db99",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#8767b7"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#6F8B94"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#b5db99"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#6F8B94"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#6F8B94"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#6F8B94"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#6F8B94",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#6F8B94"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#000000",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#ffffff",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#151515",
"editor.selectionBackground": "#8767b74D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "keen-contrast",
"version": "1.0.0",
"displayName": "Keen Contrast Theme",
"description": "Keen Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Keen Contrast",
"uiTheme": "hc-black",
"path": "./keen-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "laravel-contrast",
"tokenColors": [
{
"settings": {
"background": "#000000",
"foreground": "#ffffff",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#FFC48C",
"bracketsOptions": "underline",
"bracketContentsForeground": "#FC580C",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#615953"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#FDCA49"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#FC580C"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#FC6B0A"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#FC6B0A"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#FFA927"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#FC6B0A"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#FFC48C"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#FC6B0A"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#FC6B0A"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#FC580C"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#FFC48C"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#FC6B0A"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#FFC48C"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#FC6B0A"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#FC6B0A"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#FDCA49"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#8e8279"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#FDCA49"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#FC6B0A"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#FDCA49"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#FFC48C"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#FFC48C",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#FC580C",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#FC6B0A"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#FFA927"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#FDCA49"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#FFA927"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#FFA927"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#FFA927"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#FFC48C",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#FFC48C"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#000000",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#ffffff",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#151515",
"editor.selectionBackground": "#cd724e4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "laravel-contrast",
"version": "1.0.0",
"displayName": "Laravel Contrast Theme",
"description": "Laravel Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Laravel Contrast",
"uiTheme": "hc-black",
"path": "./laravel-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "lavender-contrast",
"tokenColors": [
{
"settings": {
"background": "#080709",
"foreground": "#E0CEED",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#A29DFA",
"bracketsOptions": "underline",
"bracketContentsForeground": "#B657FF",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#614e6e"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#F5B0EF"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#F25AE6"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#B657FF"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#B657FF"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#8E6DA6"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#B657FF"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#A29DFA"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#B657FF"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#B657FF"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#F5B0EF"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#A29DFA"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#B657FF"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#8E69C9"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#B657FF"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#B657FF"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F5B0EF"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#9076a1"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#F5B0EF"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#B657FF"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#F5B0EF"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#E0CEED"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#A29DFA"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#A29DFA",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#F25AE6",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#B657FF"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#8E6DA6"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#F5B0EF"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#8E6DA6"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#8E6DA6"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#8E6DA6"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#A29DFA",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#A29DFA"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#080709",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#E0CEED",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#110e13",
"editor.selectionBackground": "#B657FF4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "lavender-contrast",
"version": "1.0.0",
"displayName": "Lavender Contrast Theme",
"description": "Lavender Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Lavender Contrast",
"uiTheme": "hc-black",
"path": "./lavender-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "mellow-contrast",
"tokenColors": [
{
"settings": {
"background": "#0b0a09",
"foreground": "#F8F8F2",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#F28972",
"bracketsOptions": "underline",
"bracketContentsForeground": "#F55D79",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#7A7267"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#1F8181"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#1F8181"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#F2BC79"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#1F8181"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#F2BC79"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#1F8181"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#1F8181"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#F28972"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#F2BC79"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#1F8181"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#F55D79"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#1F8181"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#1F8181"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#a09688"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#F8BB39"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#1F8181"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#F8F8F2"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#F2BC79"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#F2BC79",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#F8BB39",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#1F8181"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#F2BC79"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#F2BC79"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#F2BC79"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#F2BC79"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#F2BC79",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#F2BC79"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#0b0a09",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#F8F8F2",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#13110f",
"editor.selectionBackground": "#F55D794D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "mellow-contrast",
"version": "1.0.0",
"displayName": "Mellow Contrast Theme",
"description": "Mellow Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Mellow Contrast",
"uiTheme": "hc-black",
"path": "./mellow-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "mud-contrast",
"tokenColors": [
{
"settings": {
"background": "#0d0b0b",
"foreground": "#ffffff",
"selectionForeground": "#4e653d",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#e9c865",
"bracketsOptions": "underline",
"bracketContentsForeground": "#FF9787",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#524343"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#b5db99"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#b5db99"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#f55239"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#f55239"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#f8553c"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#f55239"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#f2c12f"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#f55239"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#f55239"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#8ee350"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#f2c12f"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#f55239"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#eaba2c"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#f55239"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#f55239"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#b5db99"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#e3d7d6"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#b5db99"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#f55239"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#b5db99"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#f2c12f"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#f2c12f",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#b5db99",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#f55239"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#f8553c"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#b5db99"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#f8553c"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#f8553c"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#f8553c"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#f2c12f",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#f2c12f"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#0d0b0b",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#ffffff",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#171413",
"editor.selectionBackground": "#b5db994D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "mud-contrast",
"version": "1.0.0",
"displayName": "Mud Contrast Theme",
"description": "Mud Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Mud Contrast",
"uiTheme": "hc-black",
"path": "./mud-contrast.json"
}
]
}
}

View File

@ -0,0 +1,24 @@
{
"name": "patriot-contrast",
"version": "1.0.0",
"displayName": "Patriot Contrast Theme",
"description": "Patriot Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Patriot Contrast",
"uiTheme": "hc-black",
"path": "./patriot-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "patriot-contrast",
"tokenColors": [
{
"settings": {
"background": "#0d0e0f",
"foreground": "#CAD9E3",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#69ADB5",
"bracketsOptions": "underline",
"bracketContentsForeground": "#25808A",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#515E66"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#3790DE"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#2E6FD9"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#2E6FD9"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#2E6FD9"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#BBBCC4"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#2E6FD9"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#DE333C"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#2E6FD9"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#2E6FD9"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#ffffff"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#DE333C"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#2E6FD9"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#DE333C"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#2E6FD9"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#2E6FD9"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#3790DE"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#798b96"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#3790DE"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#2E6FD9"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#3790DE"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#CAD9E3"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#DE333C"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#DE333C",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#2E6FD9",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#2E6FD9"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#BBBCC4"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#3790DE"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#BBBCC4"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#BBBCC4"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#BBBCC4"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#DE333C",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#DE333C"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#0d0e0f",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#CAD9E3",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#191b1c",
"editor.selectionBackground": "#DE333C4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "peacock-contrast",
"version": "1.0.0",
"displayName": "Peacock Contrast Theme",
"description": "Peacock Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Peacock Contrast",
"uiTheme": "hc-black",
"path": "./peacock-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "peacock-contrast",
"tokenColors": [
{
"settings": {
"background": "#0c0c0b",
"foreground": "#ffffff",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#26a6a6",
"bracketsOptions": "underline",
"bracketContentsForeground": "#ff5d38",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#555555"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#bcd42a"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#bcd42a"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#ff5d38"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#ff5d38"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#ff5d38"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#26a6a6"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#ff5d38"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#ff5d38"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#bcd42a"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#26a6a6"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#ff5d38"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#FF5D38"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#ff5d38"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#ff5d38"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#bcd42a"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#888888"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#bcd42a"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#ff5d38"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#bcd42a"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#26a6a6"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#26a6a6",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#bcd42a",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#ff5d38"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#bcd42a"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#26a6a6",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#26a6a6"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#0c0c0b",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#ffffff",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#151513",
"editor.selectionBackground": "#ff5d384D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "potpourri-contrast",
"version": "1.0.0",
"displayName": "Potpourri Contrast Theme",
"description": "Potpourri Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Potpourri Contrast",
"uiTheme": "hc-black",
"path": "./potpourri-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "potpourri-contrast",
"tokenColors": [
{
"settings": {
"background": "#0d0c0c",
"foreground": "#F8F8F2",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#C491C4",
"bracketsOptions": "underline",
"bracketContentsForeground": "#ED1153",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#696363"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#B866FA"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#C84FF0"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#ED1153"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#ED1153"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#ED1153"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#ED1153"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#C491C4"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#ED1153"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#ED1153"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#B866FA"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#C491C4"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#ED1153"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#F76ACB"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#ED1153"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#ED1153"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#B866FA"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#8f8787"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#B866FA"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#ED1153"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#B866FA"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#F8F8F2"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#C491C4"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#C491C4",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#C84FF0",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#ED1153"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#ED1153"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#B866FA"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#ED1153"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#ED1153"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#ED1153"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#C491C4",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#C491C4"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#0d0c0c",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#F8F8F2",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#141313",
"editor.selectionBackground": "#ED11534D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "revelation-contrast",
"version": "1.0.0",
"displayName": "Revelation Contrast Theme",
"description": "Revelation Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Revelation Contrast",
"uiTheme": "hc-black",
"path": "./revelation-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "revelation-contrast",
"tokenColors": [
{
"settings": {
"background": "#0c0b0b",
"foreground": "#DEDEDE",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#95C2E8",
"bracketsOptions": "underline",
"bracketContentsForeground": "#FFBB29",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#7b726b"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#FFBB29"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#617FA0"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#617FA0"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#617FA0"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#C2DCF2"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#617FA0"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#4E5D84"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#617FA0"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#617FA0"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#95C2E8"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#4E5D84"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#617FA0"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#FFBB29"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#617FA0"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#617FA0"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#FFBB29"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#a19790"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#FFBB29"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#617FA0"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#FFBB29"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#DEDEDE"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#4E5D84"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#4E5D84",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#617FA0",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#617FA0"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#C2DCF2"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#FFBB29"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#C2DCF2"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#C2DCF2"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#C2DCF2"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#4E5D84",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#4E5D84"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#0c0b0b",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#DEDEDE",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#1a1918",
"editor.selectionBackground": "#617FA04D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "slime-contrast",
"version": "1.0.0",
"displayName": "Slime Contrast Theme",
"description": "Slime Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Slime Contrast",
"uiTheme": "hc-black",
"path": "./slime-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "slime-contrast",
"tokenColors": [
{
"settings": {
"background": "#0b0c0d",
"foreground": "#FFFFFF",
"selectionForeground": "#4e653d",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#8AB8A2",
"bracketsOptions": "underline",
"bracketContentsForeground": "#C7AF3F",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#4F5A63"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#FAFFDB"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#C7AF3F"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#6a9ec5"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#6a9ec5"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#689dc5"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#6a9ec5"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#d8e778"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#6a9ec5"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#6a9ec5"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#d0b123"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#d8e778"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#6a9ec5"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#dfbf29"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#6a9ec5"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#6a9ec5"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#FAFFDB"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#80919f"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#FAFFDB"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#6a9ec5"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#FAFFDB"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#FFFFFF"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#d8e778"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#d8e778",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#C7AF3F",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#6a9ec5"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#689dc5"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#FAFFDB"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#689dc5"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#689dc5"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#689dc5"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#d8e778",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#d8e778"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#0b0c0d",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#FFFFFF",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#131516",
"editor.selectionBackground": "#C7AF3F4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "snappy-contrast",
"version": "1.0.0",
"displayName": "Snappy Contrast Theme",
"description": "Snappy Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Snappy Contrast",
"uiTheme": "hc-black",
"path": "./snappy-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "snappy-contrast",
"tokenColors": [
{
"settings": {
"background": "#0c0c0c",
"foreground": "#e3e2e0",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#808dd3",
"bracketsOptions": "underline",
"bracketContentsForeground": "#f66153",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#696969"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#4ea1df"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#4ea1df"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#f66153"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#f66153"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#f66153"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#f66153"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#4ea1df"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#f66153"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#f66153"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#808dd3"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#4ea1df"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#f66153"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#808dd3"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#f66153"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#f66153"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#4ea1df"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#909090"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#4ea1df"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#f66153"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#4ea1df"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#e3e2e0"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#4ea1df"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#4ea1df",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#4ea1df",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#f66153"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#f66153"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#4ea1df"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#f66153"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#f66153"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#f66153"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#4ea1df",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#4ea1df"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#0c0c0c",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#e3e2e0",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#181818",
"editor.selectionBackground": "#f661534D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "solarflare-contrast",
"version": "1.0.0",
"displayName": "Solarflare Contrast Theme",
"description": "Solarflare Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Solarflare Contrast",
"uiTheme": "hc-black",
"path": "./solarflare-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "solarflare-contrast",
"tokenColors": [
{
"settings": {
"background": "#000000",
"foreground": "#e3e2e0",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#FC913A",
"bracketsOptions": "underline",
"bracketContentsForeground": "#FF4E50",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#777777"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#EDE574"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#FF4E50"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#FF4E50"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#FF4E50"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#FF4E50"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#FF4E50"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#FC913A"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#FF4E50"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#FF4E50"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#EDE574"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#FC913A"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#FF4E50"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#FC913A"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#FF4E50"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#FF4E50"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#EDE574"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#9b9b9b"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#EDE574"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#FF4E50"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#EDE574"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#e3e2e0"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#FC913A"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#FC913A",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#FF4E50",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#FF4E50"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#FF4E50"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#EDE574"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#FF4E50"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#FF4E50"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#FF4E50"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#FC913A",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#FC913A"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#000000",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#e3e2e0",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#151515",
"editor.selectionBackground": "#FF4E504D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "sourlick-contrast",
"version": "1.0.0",
"displayName": "Sourlick Contrast Theme",
"description": "Sourlick Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Sourlick Contrast",
"uiTheme": "hc-black",
"path": "./sourlick-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "sourlick-contrast",
"tokenColors": [
{
"settings": {
"background": "#060606",
"foreground": "#DEDEDE",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#FFBB29",
"bracketsOptions": "underline",
"bracketContentsForeground": "#70C910",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#615953"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#E4FF33"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#FC580C"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#8AC27A"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#8AC27A"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#D2EB31"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#8AC27A"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#EDF252"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#8AC27A"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#8AC27A"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#BDF522"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#EDF252"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#8AC27A"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#FFBB29"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#8AC27A"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#8AC27A"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#E4FF33"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#92867d"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#E4FF33"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#8AC27A"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#E4FF33"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#DEDEDE"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#EDF252"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#EDF252",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#FC580C",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#8AC27A"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#D2EB31"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#E4FF33"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#D2EB31"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#D2EB31"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#D2EB31"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#EDF252",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#EDF252"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#060606",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#DEDEDE",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#171615",
"editor.selectionBackground": "#518f0d4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "stark-contrast",
"version": "1.0.0",
"displayName": "Stark Contrast Theme",
"description": "Stark Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Stark Contrast",
"uiTheme": "hc-black",
"path": "./stark-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "stark-contrast",
"tokenColors": [
{
"settings": {
"background": "#0b0a0a",
"foreground": "#DEDEDE",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#D1D1D1",
"bracketsOptions": "underline",
"bracketContentsForeground": "#F03113",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#615953"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#FFBB29"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#617FA0"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#F03113"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#F03113"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#aaaaaa"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#F03113"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#FFBB29"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#F03113"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#F03113"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#F03113"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#FFBB29"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#F03113"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#FFBB29"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#F03113"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#F03113"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#FFBB29"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#877d76"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#FFBB29"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F03113"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#FFBB29"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#DEDEDE"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#FFBB29"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#FFBB29",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#617FA0",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#F03113"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#aaaaaa"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#FFBB29"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#aaaaaa"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#aaaaaa"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#aaaaaa"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#FFBB29",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#FFBB29"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#0b0a0a",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#DEDEDE",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#181716",
"editor.selectionBackground": "#F031134D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "tron-contrast",
"version": "1.0.0",
"displayName": "Tron Contrast Theme",
"description": "Tron Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Tron Contrast",
"uiTheme": "hc-black",
"path": "./tron-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "tron-contrast",
"tokenColors": [
{
"settings": {
"background": "#07090b",
"foreground": "#aec2e0",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#7a9bc2",
"bracketsOptions": "underline",
"bracketContentsForeground": "#ffffff",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#324357"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#6ee2ff"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#6ee2ff"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#748aa6"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#ffffff"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#267fb5"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#ffffff"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#ffffff"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#ffffff"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#267fb5"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#ffffff"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#267fb5"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#ffffff"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#ffffff"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#6ee2ff"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#4d6785"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#6ee2ff"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#ffffff"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#6ee2ff"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#aec2e0"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#267fb5"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#267fb5",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#6ee2ff",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#748aa6"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#6ee2ff"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#748aa6"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#748aa6"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#748aa6"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#267fb5",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#267fb5"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#07090b",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#aec2e0",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#101419",
"editor.selectionBackground": "#7a9bc24D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "turnip-contrast",
"version": "1.0.0",
"displayName": "Turnip Contrast Theme",
"description": "Turnip Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Turnip Contrast",
"uiTheme": "hc-black",
"path": "./turnip-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "turnip-contrast",
"tokenColors": [
{
"settings": {
"background": "#080809",
"foreground": "#EDE0CE",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#487D76",
"bracketsOptions": "underline",
"bracketContentsForeground": "#92B55F",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#7A7267"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#E8DA5E"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#E8DA5E"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#487D76"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#487D76"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#92B55F"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#487D76"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#92B55F"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#487D76"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#487D76"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#E8DA5E"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#92B55F"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#487D76"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#487D76"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#487D76"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#487D76"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#E8DA5E"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#aea395"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#E8DA5E"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#487D76"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#E8DA5E"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#EDE0CE"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#92B55F"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#92B55F",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#E8DA5E",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#487D76"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#92B55F"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#E8DA5E"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#92B55F"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#92B55F"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#92B55F"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#92B55F",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#92B55F"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#080809",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#EDE0CE",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#1c1d1f",
"editor.selectionBackground": "#487D764D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "zacks-contrast",
"version": "1.0.0",
"displayName": "Zacks Contrast Theme",
"description": "Zacks Contrast theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Zacks Contrast",
"uiTheme": "hc-black",
"path": "./zacks-contrast.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "zacks-contrast",
"tokenColors": [
{
"settings": {
"background": "#000000",
"foreground": "#f0f0f0",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#9c7ddb",
"bracketsOptions": "underline",
"bracketContentsForeground": "#ff6a38",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#777777"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#bcd42a"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#bcd42a"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#ff6a38"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#ff6a38"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#ff6a38"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#ff6a38"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#9c7ddb"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#ff6a38"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#ff6a38"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#bcd42a"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#9c7ddb"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#ff6a38"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#9c7ddb"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#ff6a38"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#ff6a38"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#bcd42a"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#afafaf"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#bcd42a"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#ff6a38"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#bcd42a"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#f0f0f0"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#9c7ddb"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#9c7ddb",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#bcd42a",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#ff6a38"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#ff6a38"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#bcd42a"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#ff6a38"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#ff6a38"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#ff6a38"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#9c7ddb",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#9c7ddb"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#000000",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#f0f0f0",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#151515",
"editor.selectionBackground": "#9c7ddb4D"
}
}

View File

@ -0,0 +1,442 @@
{
"name": "arstotzka",
"tokenColors": [
{
"settings": {
"background": "#211f1e",
"foreground": "#EDEBE6",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#A2A797",
"bracketsOptions": "underline",
"bracketContentsForeground": "#516B6B",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#3f3a36"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#a5e3d0"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#a5e3d0"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#516B6B"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#516B6B"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#A2A797"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#516B6B"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#A2A797"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#516B6B"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#516B6B"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#70807B"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": "#EDEBE6"
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#A2A797"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#516B6B"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#cf433e"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#516B6B"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#516B6B"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#a5e3d0"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#605852"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#a5e3d0"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#516B6B"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#a5e3d0"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#EDEBE6"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#A2A797"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#A2A797",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "#EDEBE6",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#a5e3d0",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#516B6B"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#A2A797"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#a5e3d0"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#A2A797"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#A2A797"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#A2A797"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#A2A797",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#A2A797"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#211f1e",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#EDEBE6",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#292725",
"editor.selectionBackground": "#516B6B4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "arstotzka",
"version": "1.0.0",
"displayName": "Arstotzka Theme",
"description": "Arstotzka theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Arstotzka",
"uiTheme": "vs-dark",
"path": "./arstotzka.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "azure",
"tokenColors": [
{
"settings": {
"background": "#181D26",
"foreground": "#ffffff",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#c43535",
"bracketsOptions": "underline",
"bracketContentsForeground": "#5f5582",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#414d62"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#64aeb3"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#64aeb3"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#52708b"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#52708b"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#508aaa"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#52708b"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#6AB0A3"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#52708b"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#52708b"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#508aaa"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": "#ffffff"
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#6AB0A3"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#52708b"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#6AB0A3"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#52708b"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#52708b"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#64aeb3"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#5c6b86"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#64aeb3"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#52708b"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#64aeb3"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#6AB0A3"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#6AB0A3",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "#ffffff",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#64aeb3",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#52708b"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#508aaa"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#64aeb3"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#508aaa"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#508aaa"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#508aaa"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#6AB0A3",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#6AB0A3"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#181D26",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#ffffff",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#33333c",
"editor.selectionBackground": "#47959a4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "azure",
"version": "1.0.0",
"displayName": "Azure Theme",
"description": "Azure theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Azure",
"uiTheme": "vs-dark",
"path": "./azure.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "bold",
"tokenColors": [
{
"settings": {
"background": "#2a2626",
"foreground": "#ffffff",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#3D8E91",
"bracketsOptions": "underline",
"bracketContentsForeground": "#F0624B",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#534b4b"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#F7A21B"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#F7A21B"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#F0624B"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#F0624B"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#F0624B"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#F0624B"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#3D8E91"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#F0624B"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#F0624B"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#B4B7AD"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#3D8E91"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#F0624B"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#3D8E91"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#F0624B"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#F0624B"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F7A21B"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#6b6161"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#F7A21B"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F0624B"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#F7A21B"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#3D8E91"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#3D8E91",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#F7A21B",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#F0624B"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#F0624B"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#F7A21B"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#F0624B"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#F0624B"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#F0624B"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#3D8E91",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#3D8E91"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#2a2626",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#ffffff",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#393434",
"editor.selectionBackground": "#3D8E914D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "bold",
"version": "1.0.0",
"displayName": "Bold Theme",
"description": "Bold theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Bold",
"uiTheme": "vs-dark",
"path": "./bold.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "boxuk",
"tokenColors": [
{
"settings": {
"background": "#ffffff",
"foreground": "#414f5c",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#ffffff",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#017c9d",
"bracketsOptions": "underline",
"bracketContentsForeground": "#019d76",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#b8b6b1"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#15b8ae"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#15b8ae"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#019d76"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#019d76"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#017c9d"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#019d76"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#017c9d"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#019d76"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#019d76"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#15b8ae"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#017c9d"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#019d76"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#019d76"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#019d76"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#019d76"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#15b8ae"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#888888"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#15b8ae"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#019d76"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#15b8ae"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#414f5c"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#017c9d"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#017c9d",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#15b8ae",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#019d76"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#017c9d"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#15b8ae"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#017c9d"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#017c9d"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#017c9d"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#017c9d",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#017c9d"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#ffffff",
"editorCursor.foreground": "#222222",
"editor.foreground": "#414f5c",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#eeeeee",
"editor.selectionBackground": "#017c9d4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "boxuk",
"version": "1.0.0",
"displayName": "Box UK Theme",
"description": "Box UK theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Box UK",
"uiTheme": "vs-dark",
"path": "./boxuk.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "carbonight",
"tokenColors": [
{
"settings": {
"background": "#2E2C2B",
"foreground": "#B0B0B0",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#C4C4C4",
"bracketsOptions": "underline",
"bracketContentsForeground": "#8C8C8C",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#423F3D"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#B0B0B0"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#8C8C8C"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#8C8C8C"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#eeeeee"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#8C8C8C"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#C4C4C4"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#8C8C8C"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#8C8C8C"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#ffffff"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#C4C4C4"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#8C8C8C"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#ffffff"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#8C8C8C"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#8C8C8C"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#5c5856"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#ffffff"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#8C8C8C"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#B0B0B0"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#C4C4C4"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#C4C4C4",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#B0B0B0",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#8C8C8C"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#eeeeee"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#eeeeee"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#eeeeee"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#eeeeee"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#C4C4C4",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#C4C4C4"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#2E2C2B",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#B0B0B0",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#3B3633",
"editor.selectionBackground": "#8C8C8C4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "carbonight",
"version": "1.0.0",
"displayName": "Carbonight Theme",
"description": "Carbonight theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Carbonight",
"uiTheme": "vs-dark",
"path": "./carbonight.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "chocolate",
"tokenColors": [
{
"settings": {
"background": "#150f08",
"foreground": "#ffffff",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#8B6E46",
"bracketsOptions": "underline",
"bracketContentsForeground": "#CCB697",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#795431"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#F7A21B"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#F7A21B"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#CCB697"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#CCB697"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#B99768"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#CCB697"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#8B6E46"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#CCB697"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#CCB697"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#E2CDB0"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#8B6E46"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#CCB697"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#8B6E46"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#CCB697"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#CCB697"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F7A21B"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#795431"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#F7A21B"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#CCB697"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#F7A21B"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#8B6E46"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#8B6E46",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#F7A21B",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#CCB697"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#B99768"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#F7A21B"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#B99768"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#B99768"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#B99768"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#8B6E46",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#8B6E46"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#150f08",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#ffffff",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#362715",
"editor.selectionBackground": "#8B6E464D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "chocolate",
"version": "1.0.0",
"displayName": "Chocolate Theme",
"description": "Chocolate theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Chocolate",
"uiTheme": "vs-dark",
"path": "./chocolate.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "crisp",
"tokenColors": [
{
"settings": {
"background": "#221a22",
"foreground": "#ffffff",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#cba0cd",
"bracketsOptions": "underline",
"bracketContentsForeground": "#765478",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#574457"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#fc9a0f"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#fc9a0f"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#765478"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#765478"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#FC6A0F"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#765478"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#cba0cd"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#765478"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#765478"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#FC6A0F"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": "#ffffff"
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#cba0cd"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#765478"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#cba0cd"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#765478"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#765478"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#fc9a0f"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#776377"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#fc9a0f"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#765478"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#fc9a0f"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#cba0cd"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#cba0cd",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "#ffffff",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#fc9a0f",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#765478"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#FC6A0F"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#fc9a0f"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#FC6A0F"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#FC6A0F"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#FC6A0F"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#cba0cd",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#cba0cd"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#221a22",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#ffffff",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#1c151c",
"editor.selectionBackground": "#FC6A0F4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "crisp",
"version": "1.0.0",
"displayName": "Crisp Theme",
"description": "Crisp theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Crisp",
"uiTheme": "vs-dark",
"path": "./crisp.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "darkside",
"tokenColors": [
{
"settings": {
"background": "#222324",
"foreground": "#BABABA",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#68C244",
"bracketsOptions": "underline",
"bracketContentsForeground": "#E8341C",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#494B4D"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#F2D42C"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#8E69C9"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#E8341C"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#E8341C"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#F08D24"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#E8341C"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#1CC3E8"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#E8341C"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#E8341C"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#68C244"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#1CC3E8"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#E8341C"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#8E69C9"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#E8341C"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#E8341C"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F2D42C"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#696b6e"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#F2D42C"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#E8341C"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#F2D42C"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#BABABA"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#1CC3E8"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#1CC3E8",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#8E69C9",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#E8341C"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#F08D24"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#F2D42C"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#F08D24"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#F08D24"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#F08D24"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#1CC3E8",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#1CC3E8"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#222324",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#BABABA",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#303333",
"editor.selectionBackground": "#FF4E504D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "darkside",
"version": "1.0.0",
"displayName": "Darkside Theme",
"description": "Darkside theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Darkside",
"uiTheme": "vs-dark",
"path": "./darkside.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "earthsong",
"tokenColors": [
{
"settings": {
"background": "#36312C",
"foreground": "#EBD1B7",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#DB784D",
"bracketsOptions": "underline",
"bracketContentsForeground": "#95CC5E",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#7A7267"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#DB784D"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#95CC5E"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#DB784D"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#DB784D"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#60A365"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#95CC5E"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#DB784D"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#95CC5E"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#DB784D"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#DB784D"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#9a9082"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#F8BB39"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#DB784D"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#EBD1B7"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#95CC5E"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#95CC5E",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#F8BB39",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#95CC5E",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#95CC5E"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#36312C",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#EBD1B7",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#45403B",
"editor.selectionBackground": "#DB784D4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "earthsong",
"version": "1.0.0",
"displayName": "Earthsong Theme",
"description": "Earthsong theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Earthsong",
"uiTheme": "vs-dark",
"path": "./earthsong.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "freshcut",
"tokenColors": [
{
"settings": {
"background": "#2F3030",
"foreground": "#F8F8F2",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#4ECDC4",
"bracketsOptions": "underline",
"bracketContentsForeground": "#00A8C6",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#737b84"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#e9ee00"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#8FBE00"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#C8D7E8"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#00A8C6"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#4ECDC4"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#00A8C6"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#00A8C6"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#AEE239"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#4ECDC4"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#00A8C6"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#4ECDC4"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#00A8C6"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#00A8C6"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#e9ee00"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#939da8"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#e9ee00"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#00A8C6"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#e9ee00"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#F8F8F2"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#4ECDC4"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#4ECDC4",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#8FBE00",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#C8D7E8"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#e9ee00"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#C8D7E8"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#C8D7E8"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#C8D7E8"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#4ECDC4",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#4ECDC4"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#2F3030",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#F8F8F2",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#383939",
"editor.selectionBackground": "#0080974D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "freshcut",
"version": "1.0.0",
"displayName": "FreshCut Theme",
"description": "FreshCut theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "FreshCut",
"uiTheme": "vs-dark",
"path": "./freshcut.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "frontier",
"tokenColors": [
{
"settings": {
"background": "#36312C",
"foreground": "#F8F8F2",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#2EBF7E",
"bracketsOptions": "underline",
"bracketContentsForeground": "#F23A3A",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#7A7267"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#2EBF7E"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#F23A3A"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#F23A3A"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#FC803D"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#F23A3A"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#2EBF7E"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#F23A3A"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#F23A3A"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#F8BB39"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#2EBF7E"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#F23A3A"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#2EBF7E"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#F23A3A"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#F23A3A"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#a59a8a"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#F8BB39"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F23A3A"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#F8F8F2"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#2EBF7E"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#2EBF7E",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#2EBF7E",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#F23A3A"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#FC803D"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#FC803D"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#FC803D"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#FC803D"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#2EBF7E",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#2EBF7E"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#36312C",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#F8F8F2",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#45403B",
"editor.selectionBackground": "#2EBF7E4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "frontier",
"version": "1.0.0",
"displayName": "Frontier Theme",
"description": "Frontier theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Frontier",
"uiTheme": "vs-dark",
"path": "./frontier.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "github",
"tokenColors": [
{
"settings": {
"background": "#ffffff",
"foreground": "#555555",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#ffffff",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#445588",
"bracketsOptions": "underline",
"bracketContentsForeground": "#008080",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#b8b6b1"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#DD1144"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#DD1144"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#008080"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#008080"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#555555"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#008080"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#445588"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#008080"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#008080"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#DD1144"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": "#008080"
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#445588"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#008080"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#445588"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#008080"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#008080"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#DD1144"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#7f7e7a"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#DD1144"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#008080"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#DD1144"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#555555"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#445588"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#445588",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "#008080",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#DD1144",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#008080"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#555555"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#DD1144"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#555555"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#555555"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#555555"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#445588",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#445588"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#ffffff",
"editorCursor.foreground": "#444444",
"editor.foreground": "#555555",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#eeeeee",
"editor.selectionBackground": "#0080804D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "github",
"version": "1.0.0",
"displayName": "Github Theme",
"description": "Github theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Github",
"uiTheme": "vs",
"path": "./github.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "gloom",
"tokenColors": [
{
"settings": {
"background": "#2A332B",
"foreground": "#D8EBE5",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#FF5D38",
"bracketsOptions": "underline",
"bracketContentsForeground": "#26A6A6",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#4F6E64"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#BCD42A"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#BCD42A"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#FF5D38"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#FF5D38"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#FF5D38"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#26A6A6"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#FF5D38"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#FF5D38"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#BCD42A"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#26A6A6"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#FF5D38"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#FF5D38"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#FF5D38"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#FF5D38"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#BCD42A"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#668e81"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#BCD42A"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#FF5D38"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#BCD42A"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#D8EBE5"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#26A6A6",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#BCD42A",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#FF5D38"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#BCD42A"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#26A6A6",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#26A6A6"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#2A332B",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#D8EBE5",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#3C4D3E",
"editor.selectionBackground": "#FF5D384D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "gloom",
"version": "1.0.0",
"displayName": "Gloom Theme",
"description": "Gloom theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Gloom",
"uiTheme": "vs-dark",
"path": "./gloom.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "glowfish",
"tokenColors": [
{
"settings": {
"background": "#191f13",
"foreground": "#6ea240",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#DB784D",
"bracketsOptions": "underline",
"bracketContentsForeground": "#95CC5E",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#3c4e2d"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#95CC5E"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#D65940"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#DB784D"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#95CC5E"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#DB784D"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#DB784D"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#60A365"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#95CC5E"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#DB784D"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#95CC5E"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#DB784D"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#DB784D"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#67854f"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#F8BB39"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#DB784D"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#6ea240"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#95CC5E"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#95CC5E",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#95CC5E",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#DB784D"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#D65940"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#F8BB39"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#D65940"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#D65940"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#D65940"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#95CC5E",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#95CC5E"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#191f13",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#6ea240",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#222a1a",
"editor.selectionBackground": "#DB784D4D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "glowfish",
"version": "1.0.0",
"displayName": "Glowfish Theme",
"description": "Glowfish theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Glowfish",
"uiTheme": "vs-dark",
"path": "./glowfish.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "goldfish",
"tokenColors": [
{
"settings": {
"background": "#2E3336",
"foreground": "#F8F8F2",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#A7DBD8",
"bracketsOptions": "underline",
"bracketContentsForeground": "#F38630",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#505C63"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#f36e3a"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#f25619"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#FA6900"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#FA6900"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#A7DBD8"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#FA6900"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#F38630"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#FA6900"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#FA6900"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#69D2E7"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#F38630"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#FA6900"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#F38630"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#FA6900"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#FA6900"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#f36e3a"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#798891"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#f36e3a"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#FA6900"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#f36e3a"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#F8F8F2"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#F38630"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#F38630",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#f25619",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#FA6900"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#A7DBD8"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#f36e3a"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#A7DBD8"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#A7DBD8"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#A7DBD8"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#F38630",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#F38630"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#2E3336",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#F8F8F2",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#465459",
"editor.selectionBackground": "#F386304D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "goldfish",
"version": "1.0.0",
"displayName": "Goldfish Theme",
"description": "Goldfish theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Goldfish",
"uiTheme": "vs-dark",
"path": "./goldfish.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "grunge",
"tokenColors": [
{
"settings": {
"background": "#31332C",
"foreground": "#F8F8F2",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#FFC48C",
"bracketsOptions": "underline",
"bracketContentsForeground": "#F56991",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#5C634F"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#D1F2A5"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#F56991"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#F56991"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#F56991"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#91A374"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#F56991"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#D1F2A5"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#F56991"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#F56991"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#FFC48C"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#D1F2A5"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#F56991"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#FFC48C"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#F56991"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#F56991"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#D1F2A5"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#7f886f"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#D1F2A5"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F56991"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#D1F2A5"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#F8F8F2"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#D1F2A5"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#D1F2A5",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#F56991",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#F56991"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#91A374"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#D1F2A5"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#91A374"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#91A374"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#91A374"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#D1F2A5",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#D1F2A5"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#31332C",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#F8F8F2",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#41453A",
"editor.selectionBackground": "#F569914D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "grunge",
"version": "1.0.0",
"displayName": "Grunge Theme",
"description": "Grunge theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Grunge",
"uiTheme": "vs-dark",
"path": "./grunge.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "halflife",
"tokenColors": [
{
"settings": {
"background": "#222222",
"foreground": "#cccccc",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#FC913A",
"bracketsOptions": "underline",
"bracketContentsForeground": "#7D8991",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#555555"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#F9D423"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#F9D423"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#7D8991"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#7D8991"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#7D8991"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#7D8991"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#FC913A"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#7D8991"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#7D8991"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#F9D423"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#FC913A"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#7D8991"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#F85931"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#7D8991"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#7D8991"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#F9D423"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#808080"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#F9D423"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#7D8991"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#F9D423"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#cccccc"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#FC913A"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#FC913A",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#F9D423",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#7D8991"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#7D8991"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#F9D423"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#7D8991"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#7D8991"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#7D8991"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#FC913A",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#FC913A"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#222222",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#cccccc",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#282828",
"editor.selectionBackground": "#F859314D"
}
}

View File

@ -0,0 +1,24 @@
{
"name": "halflife",
"version": "1.0.0",
"displayName": "Halflife Theme",
"description": "Halflife theme by Dayle Rees",
"publisher": "Dayle Rees",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Halflife",
"uiTheme": "vs-dark",
"path": "./halflife.json"
}
]
}
}

View File

@ -0,0 +1,442 @@
{
"name": "heroku",
"tokenColors": [
{
"settings": {
"background": "#1b1b24",
"foreground": "#c8c7d5",
"selectionForeground": "#ffffff",
"findHighlight": "#ffe792",
"findHighlightForeground": "#000000",
"selectionBorder": "#222218",
"activeGuide": "#9d550fb0",
"bracketsForeground": "#7873ae",
"bracketsOptions": "underline",
"bracketContentsForeground": "#a6fa62",
"bracketContentsOptions": "underline",
"tagsOptions": "stippled_underline"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#505067"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#a6fa62"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#a6fa62"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"foreground": "#7873ae"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#7873ae"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#7873ae"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#7873ae"
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"fontStyle": "",
"foreground": "#585480"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"fontStyle": "underline",
"foreground": "#7873ae"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "italic underline",
"foreground": "#7873ae"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
"foreground": "#ffffff"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic",
"foreground": ""
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#585480"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#7873ae"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"fontStyle": "",
"foreground": "#a6fa62"
}
},
{
"name": "Library constant",
"scope": "support.constant",
"settings": {
"fontStyle": "",
"foreground": "#7873ae"
}
},
{
"name": "Library class/type",
"scope": [
"support.type",
"support.class"
],
"settings": {
"fontStyle": "italic",
"foreground": "#7873ae"
}
},
{
"name": "Library variable",
"scope": "support.other.variable",
"settings": {
"fontStyle": ""
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0",
"fontStyle": ""
}
},
{
"name": "Invalid deprecated",
"scope": "invalid.deprecated",
"settings": {
"background": "#00a8c6",
"foreground": "#f8f8f0"
}
},
{
"name": "JSON String",
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#a6fa62"
}
},
{
"name": "diff.header",
"scope": [
"meta.diff",
"meta.diff.header"
],
"settings": {
"foreground": "#75715E"
}
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"settings": {
"foreground": "#00A8C6"
}
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"settings": {
"foreground": "#A6E22E"
}
},
{
"name": "diff.changed",
"scope": "markup.changed",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "constant.numeric.line-number.find-in-files - match",
"settings": {
"foreground": "#8FBE00A0"
}
},
{
"scope": "entity.name.filename.find-in-files",
"settings": {
"foreground": "#E6DB74"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#5d5d76"
}
},
{
"scope": [
"meta.property-value",
"support.constant.property-value",
"constant.other.color"
],
"settings": {
"foreground": "#a6fa62"
}
},
{
"scope": "meta.structure.dictionary.json string.quoted.double.json",
"settings": {
"foreground": "#7873ae"
}
},
{
"scope": "meta.structure.dictionary.value.json string.quoted.double.json",
"settings": {
"foreground": "#a6fa62"
}
},
{
"name": "Function argument",
"scope": "meta.property-name support.type.property-name",
"settings": {
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "meta.property-value punctuation.separator.key-value",
"settings": {
"foreground": "#c8c7d5"
}
},
{
"name": "Function argument",
"scope": [
"keyword.other.use",
"keyword.other.function.use",
"keyword.other.namespace",
"keyword.other.new",
"keyword.other.special-method",
"keyword.other.unit",
"keyword.other.use-as"
],
"settings": {
"foreground": "#585480"
}
},
{
"name": "Function argument",
"scope": [
"meta.use support.class.builtin",
"meta.other.inherited-class support.class.builtin"
],
"settings": {
"foreground": "#585480",
"fontStyle": "normal"
}
},
{
"name": "Function argument",
"scope": "variable.other",
"settings": {
"foreground": "",
"fontStyle": "normal"
}
},
{
"name": "Coffeescript Function argument",
"scope": "variable.parameter.function.coffee",
"settings": {
"foreground": "#a6fa62",
"fontStyle": "italic"
}
},
{
"name": "Markdown Titles",
"scope": "entity.name.section.markdown",
"settings": {
"foreground": "#7873ae"
}
},
{
"name": "Markdown Title Hash",
"scope": "punctuation.definition.heading.markdown",
"settings": {
"foreground": "#7873ae"
}
},
{
"name": "Markdown Raw",
"scope": "markup.raw.inline.markdown",
"settings": {
"foreground": "#a6fa62"
}
},
{
"name": "Markdown bold stars",
"scope": [
"punctuation.definition.bold.markdown",
"punctuation.definition.italic.markdown"
],
"settings": {
"foreground": "#7873ae"
}
},
{
"name": "Markdown link title braces",
"scope": [
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown"
],
"settings": {
"foreground": "#7873ae"
}
},
{
"name": "Markdown link braces",
"scope": "punctuation.definition.metadata.markdown",
"settings": {
"foreground": "#7873ae"
}
},
{
"name": "Markdown link",
"scope": [
"markup.underline.link.markdown",
"markup.underline.link.image.markdown",
"meta.image.inline.markdown"
],
"settings": {
"foreground": "#585480",
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": [
"markup.bold.markdown",
"markup.italic.markdown"
],
"settings": {
"foreground": "#585480"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.italic.markdown",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markdown bold/italic",
"scope": "markup.bold.markdown",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Markdown pre",
"scope": "markup.raw.block.markdown",
"settings": {
"foreground": "#00a8c6"
}
},
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"settings": {
"foreground": "#e61f44"
}
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"settings": {
"foreground": "#a7da1e"
}
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"settings": {
"foreground": "#f7b83d"
}
}
],
"colors": {
"editor.background": "#1b1b24",
"editorCursor.foreground": "#f8f8f0",
"editor.foreground": "#c8c7d5",
"editorWhitespace.foreground": "#3b3a32",
"editor.lineHighlightBackground": "#242430",
"editor.selectionBackground": "#7873ae4D"
}
}

Some files were not shown because too many files have changed in this diff Show More