From 344ed7ac334226c08ca2f675a939821d2f31d41b Mon Sep 17 00:00:00 2001 From: Alessandro Mauri Date: Fri, 22 Dec 2023 00:03:21 +0100 Subject: [PATCH] initial commit --- .gitattributes | 2 + .gitignore | 2 + .vscode/launch.json | 17 + .vscodeignore | 4 + CHANGELOG.md | 9 + README.md | 18 + package.json | 26 + themes/redder-than-siena-color-theme.json | 2000 +++++++++++++++++++++ vsc-extension-quickstart.md | 28 + 9 files changed, 2106 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .vscode/launch.json create mode 100644 .vscodeignore create mode 100644 CHANGELOG.md create mode 100644 README.md create mode 100644 package.json create mode 100644 themes/redder-than-siena-color-theme.json create mode 100644 vsc-extension-quickstart.md diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..70e63ff --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Set default behavior to automatically normalize line endings. +* text=auto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aeee732 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules +*.vsix diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..0e191b5 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,17 @@ +// A launch configuration that launches the extension inside a new window +// Use IntelliSense to learn about possible attributes. +// Hover to view descriptions of existing attributes. +// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Extension", + "type": "extensionHost", + "request": "launch", + "args": [ + "--extensionDevelopmentPath=${workspaceFolder}" + ] + } + ] +} \ No newline at end of file diff --git a/.vscodeignore b/.vscodeignore new file mode 100644 index 0000000..f369b5e --- /dev/null +++ b/.vscodeignore @@ -0,0 +1,4 @@ +.vscode/** +.vscode-test/** +.gitignore +vsc-extension-quickstart.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..14a42d9 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log + +All notable changes to the "redder-than-siena" extension will be documented in this file. + +Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. + +## [Unreleased] + +- Initial release diff --git a/README.md b/README.md new file mode 100644 index 0000000..f12a64a --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# redder-than-siena README + +theme: https://coolors.co/0b0909-161313-2c2626-ffded6-ffefeb-194961-2978a0-88ab75-fffd77-b8b500 + +## Working with Markdown + +You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts: + +- Split the editor (`Cmd+\` on macOS or `Ctrl+\` on Windows and Linux). +- Toggle preview (`Shift+Cmd+V` on macOS or `Shift+Ctrl+V` on Windows and Linux). +- Press `Ctrl+Space` (Windows, Linux, macOS) to see a list of Markdown snippets. + +## For more information + +- [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown) +- [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/) + +**Enjoy!** diff --git a/package.json b/package.json new file mode 100644 index 0000000..6bfee97 --- /dev/null +++ b/package.json @@ -0,0 +1,26 @@ +{ + "name": "redder-than-siena", + "displayName": "redder-than-siena", + "description": "reddish dark theme for readability", + "publisher": "Alessandro Mauri", + "version": "0.0.1", + "engines": { + "vscode": "^1.85.0" + }, + "repository": { + "type": "git", + "url": "https://git.alemauri.eu/alema/redder-than-siena.git" + }, + "categories": [ + "Themes" + ], + "contributes": { + "themes": [ + { + "label": "Redder Than Siena", + "uiTheme": "vs-dark", + "path": "./themes/redder-than-siena-color-theme.json" + } + ] + } +} diff --git a/themes/redder-than-siena-color-theme.json b/themes/redder-than-siena-color-theme.json new file mode 100644 index 0000000..9158fb1 --- /dev/null +++ b/themes/redder-than-siena-color-theme.json @@ -0,0 +1,2000 @@ +{ + "name": "Redder Than Siena", + "type": "dark", + "semanticHighlighting": true, + "semanticTokenColors": { + "enumMember": { + "foreground": "#2978a0" + }, + "variable.constant": { + "foreground": "#fffd77" + }, + "variable.defaultLibrary": { + "foreground": "#6fa6c2" + } + }, + "tokenColors": [ + { + "name": "unison punctuation", + "scope": "punctuation.definition.delayed.unison,punctuation.definition.list.begin.unison,punctuation.definition.list.end.unison,punctuation.definition.ability.begin.unison,punctuation.definition.ability.end.unison,punctuation.operator.assignment.as.unison,punctuation.separator.pipe.unison,punctuation.separator.delimiter.unison,punctuation.definition.hash.unison", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "haskell variable generic-type", + "scope": "variable.other.generic-type.haskell", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "haskell storage type", + "scope": "storage.type.haskell", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "support.variable.magic.python", + "scope": "support.variable.magic.python", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "punctuation.separator.parameters.python", + "scope": "punctuation.separator.period.python,punctuation.separator.element.python,punctuation.parenthesis.begin.python,punctuation.parenthesis.end.python", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "variable.parameter.function.language.special.self.python", + "scope": "variable.parameter.function.language.special.self.python", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "storage.modifier.lifetime.rust", + "scope": "storage.modifier.lifetime.rust", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "support.function.std.rust", + "scope": "support.function.std.rust", + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "entity.name.lifetime.rust", + "scope": "entity.name.lifetime.rust", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "variable.language.rust", + "scope": "variable.language.rust", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "support.constant.edge", + "scope": "support.constant.edge", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "regexp constant character-class", + "scope": "constant.other.character-class.regexp", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "regexp operator.quantifier", + "scope": "keyword.operator.quantifier.regexp", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "punctuation.definition", + "scope": "punctuation.definition.string.begin,punctuation.definition.string.end", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "Text", + "scope": "variable.parameter.function", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Comment Markup Link", + "scope": "comment markup.link", + "settings": { + "foreground": "#5e5b5a" + } + }, + { + "name": "markup diff", + "scope": "markup.changed.diff", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "diff", + "scope": "meta.diff.header.from-file,meta.diff.header.to-file,punctuation.definition.from-file.diff,punctuation.definition.to-file.diff", + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "inserted.diff", + "scope": "markup.inserted.diff", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "deleted.diff", + "scope": "markup.deleted.diff", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "c++ function", + "scope": "meta.function.c,meta.function.cpp", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "c++ block", + "scope": "punctuation.section.block.begin.bracket.curly.cpp,punctuation.section.block.end.bracket.curly.cpp,punctuation.terminator.statement.c,punctuation.section.block.begin.bracket.curly.c,punctuation.section.block.end.bracket.curly.c,punctuation.section.parens.begin.bracket.round.c,punctuation.section.parens.end.bracket.round.c,punctuation.section.parameters.begin.bracket.round.c,punctuation.section.parameters.end.bracket.round.c", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "js/ts punctuation separator key-value", + "scope": "punctuation.separator.key-value", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "js/ts import keyword", + "scope": "keyword.operator.expression.import", + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "math js/ts", + "scope": "support.constant.math", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "math property js/ts", + "scope": "support.constant.property.math", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "js/ts variable.other.constant", + "scope": "variable.other.constant", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "java type", + "scope": [ + "storage.type.annotation.java", + "storage.type.object.array.java" + ], + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "java source", + "scope": "source.java", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "java modifier.import", + "scope": "punctuation.section.block.begin.java,punctuation.section.block.end.java,punctuation.definition.method-parameters.begin.java,punctuation.definition.method-parameters.end.java,meta.method.identifier.java,punctuation.section.method.begin.java,punctuation.section.method.end.java,punctuation.terminator.java,punctuation.section.class.begin.java,punctuation.section.class.end.java,punctuation.section.inner-class.begin.java,punctuation.section.inner-class.end.java,meta.method-call.java,punctuation.section.class.begin.bracket.curly.java,punctuation.section.class.end.bracket.curly.java,punctuation.section.method.begin.bracket.curly.java,punctuation.section.method.end.bracket.curly.java,punctuation.separator.period.java,punctuation.bracket.angle.java,punctuation.definition.annotation.java,meta.method.body.java", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "java modifier.import", + "scope": "meta.method.java", + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "java modifier.import", + "scope": "storage.modifier.import.java,storage.type.java,storage.type.generic.java", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "java instanceof", + "scope": "keyword.operator.instanceof.java", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "java variable.name", + "scope": "meta.definition.variable.name.java", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "operator logical", + "scope": "keyword.operator.logical", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "operator bitwise", + "scope": "keyword.operator.bitwise", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "operator channel", + "scope": "keyword.operator.channel", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "support.constant.property-value.scss", + "scope": "support.constant.property-value.scss,support.constant.property-value.css", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "CSS/SCSS/LESS Operators", + "scope": "keyword.operator.css,keyword.operator.scss,keyword.operator.less", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "css color standard name", + "scope": "support.constant.color.w3c-standard-color-name.css,support.constant.color.w3c-standard-color-name.scss", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "css comma", + "scope": "punctuation.separator.list.comma.css", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "css attribute-name.id", + "scope": "support.constant.color.w3c-standard-color-name.css", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "css property-name", + "scope": "support.type.vendored.property-name.css", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "js/ts module", + "scope": "support.module.node,support.type.object.module,support.module.node", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "entity.name.type.module", + "scope": "entity.name.type.module", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "js variable readwrite", + "scope": "variable.other.readwrite,meta.object-literal.key,support.variable.property,support.variable.object.process,support.variable.object.node", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "js/ts json", + "scope": "support.constant.json", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "js/ts Keyword", + "scope": [ + "keyword.operator.expression.instanceof", + "keyword.operator.new", + "keyword.operator.ternary", + "keyword.operator.optional", + "keyword.operator.expression.keyof" + ], + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "js/ts console", + "scope": "support.type.object.console", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "js/ts support.variable.property.process", + "scope": "support.variable.property.process", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "js console function", + "scope": "entity.name.function,support.function.console", + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "keyword.operator.misc.rust", + "scope": "keyword.operator.misc.rust", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "keyword.operator.sigil.rust", + "scope": "keyword.operator.sigil.rust", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "operator", + "scope": "keyword.operator.delete", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "js dom", + "scope": "support.type.object.dom", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "js dom variable", + "scope": "support.variable.dom,support.variable.property.dom", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "keyword.operator", + "scope": "keyword.operator.arithmetic,keyword.operator.comparison,keyword.operator.decrement,keyword.operator.increment,keyword.operator.relational", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "C operator assignment", + "scope": "keyword.operator.assignment.c,keyword.operator.comparison.c,keyword.operator.c,keyword.operator.increment.c,keyword.operator.decrement.c,keyword.operator.bitwise.shift.c,keyword.operator.assignment.cpp,keyword.operator.comparison.cpp,keyword.operator.cpp,keyword.operator.increment.cpp,keyword.operator.decrement.cpp,keyword.operator.bitwise.shift.cpp", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Punctuation", + "scope": "punctuation.separator.delimiter", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Other punctuation .c", + "scope": "punctuation.separator.c,punctuation.separator.cpp", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "C type posix-reserved", + "scope": "support.type.posix-reserved.c,support.type.posix-reserved.cpp", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "keyword.operator.sizeof.c", + "scope": "keyword.operator.sizeof.c,keyword.operator.sizeof.cpp", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "python parameter", + "scope": "variable.parameter.function.language.python", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "python type", + "scope": "support.type.python", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "python logical", + "scope": "keyword.operator.logical.python", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "pyCs", + "scope": "variable.parameter.function.python", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "python block", + "scope": "punctuation.definition.arguments.begin.python,punctuation.definition.arguments.end.python,punctuation.separator.arguments.python,punctuation.definition.list.begin.python,punctuation.definition.list.end.python", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "python function-call.generic", + "scope": "meta.function-call.generic.python", + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "python placeholder reset to normal string", + "scope": "constant.character.format.placeholder.other.python", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "Operators", + "scope": "keyword.operator", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Compound Assignment Operators", + "scope": "keyword.operator.assignment.compound", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Compound Assignment Operators js/ts", + "scope": "keyword.operator.assignment.compound.js,keyword.operator.assignment.compound.ts", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Keywords", + "scope": "keyword", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Namespaces", + "scope": "entity.name.namespace", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "Variables", + "scope": "variable", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Variables", + "scope": "variable.c", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Language variables", + "scope": "variable.language", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "Java Variables", + "scope": "token.variable.parameter.java", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Java Imports", + "scope": "import.storage.java", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "Packages", + "scope": "token.package.keyword", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Packages", + "scope": "token.package", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Functions", + "scope": [ + "entity.name.function", + "meta.require", + "support.function.any-method", + "variable.function" + ], + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "Classes", + "scope": "entity.name.type.namespace", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "Classes", + "scope": "support.class, entity.name.type.class", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "Class name", + "scope": "entity.name.class.identifier.namespace.type", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "Class name", + "scope": [ + "entity.name.class", + "variable.other.class.js", + "variable.other.class.ts" + ], + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "Class name php", + "scope": "variable.other.class.php", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Type Name", + "scope": "entity.name.type", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "Keyword Control", + "scope": "keyword.control", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Control Elements", + "scope": "control.elements, keyword.operator.less", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "Methods", + "scope": "keyword.other.special-method", + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "Storage", + "scope": "storage", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Storage JS TS", + "scope": "token.storage", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Source Js Keyword Operator Delete,source Js Keyword Operator In,source Js Keyword Operator Of,source Js Keyword Operator Instanceof,source Js Keyword Operator New,source Js Keyword Operator Typeof,source Js Keyword Operator Void", + "scope": "keyword.operator.expression.delete,keyword.operator.expression.in,keyword.operator.expression.of,keyword.operator.expression.instanceof,keyword.operator.new,keyword.operator.expression.typeof,keyword.operator.expression.void", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Java Storage", + "scope": "token.storage.type.java", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "Support", + "scope": "support.function", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Support type", + "scope": "support.type.property-name", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Support type", + "scope": "support.constant.property-value", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Support type", + "scope": "support.constant.font-name", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "Meta tag", + "scope": "meta.tag", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Strings", + "scope": "string", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "Inherited Class", + "scope": "entity.other.inherited-class", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "Constant other symbol", + "scope": "constant.other.symbol", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Integers", + "scope": "constant.numeric", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "Constants", + "scope": "constant", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "Constants", + "scope": "punctuation.definition.constant", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "Tags", + "scope": "entity.name.tag", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Attributes", + "scope": "entity.other.attribute-name", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "Attribute IDs", + "scope": "entity.other.attribute-name.id", + "settings": { + "fontStyle": "normal", + "foreground": "#88ab75" + } + }, + { + "name": "Attribute class", + "scope": "entity.other.attribute-name.class.css", + "settings": { + "fontStyle": "normal", + "foreground": "#fffd77" + } + }, + { + "name": "Selector", + "scope": "meta.selector", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Headings", + "scope": "markup.heading", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Headings", + "scope": "markup.heading punctuation.definition.heading, entity.name.section", + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "Units", + "scope": "keyword.other.unit", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Bold", + "scope": "markup.bold,todo.bold", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "Bold", + "scope": "punctuation.definition.bold", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "markup Italic", + "scope": "markup.italic, punctuation.definition.italic,todo.emphasis", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "emphasis md", + "scope": "emphasis md", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "[VSCODE-CUSTOM] Markdown headings", + "scope": "entity.name.section.markdown", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "[VSCODE-CUSTOM] Markdown heading Punctuation Definition", + "scope": "punctuation.definition.heading.markdown", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "punctuation.definition.list.begin.markdown", + "scope": "punctuation.definition.list.begin.markdown", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "[VSCODE-CUSTOM] Markdown heading setext", + "scope": "markup.heading.setext", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "[VSCODE-CUSTOM] Markdown Punctuation Definition Bold", + "scope": "punctuation.definition.bold.markdown", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "[VSCODE-CUSTOM] Markdown Inline Raw", + "scope": "markup.inline.raw.markdown", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "[VSCODE-CUSTOM] Markdown Inline Raw", + "scope": "markup.inline.raw.string.markdown", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "[VSCODE-CUSTOM] Markdown List Punctuation Definition", + "scope": "punctuation.definition.list.markdown", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "[VSCODE-CUSTOM] Markdown Punctuation Definition String", + "scope": [ + "punctuation.definition.string.begin.markdown", + "punctuation.definition.string.end.markdown", + "punctuation.definition.metadata.markdown" + ], + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "beginning.punctuation.definition.list.markdown", + "scope": ["beginning.punctuation.definition.list.markdown"], + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "[VSCODE-CUSTOM] Markdown Punctuation Definition Link", + "scope": "punctuation.definition.metadata.markdown", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "[VSCODE-CUSTOM] Markdown Underline Link/Image", + "scope": "markup.underline.link.markdown,markup.underline.link.image.markdown", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "[VSCODE-CUSTOM] Markdown Link Title/Description", + "scope": "string.other.link.title.markdown,string.other.link.description.markdown", + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "Regular Expressions", + "scope": "string.regexp", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Escape Characters", + "scope": "constant.character.escape", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Embedded", + "scope": "punctuation.section.embedded, variable.interpolation", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Embedded", + "scope": "punctuation.section.embedded.begin,punctuation.section.embedded.end", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "illegal", + "scope": "invalid.illegal", + "settings": { + "foreground": "#ffffff" + } + }, + { + "name": "illegal", + "scope": "invalid.illegal.bad-ampersand.html", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Broken", + "scope": "invalid.broken", + "settings": { + "foreground": "#ffffff" + } + }, + { + "name": "Deprecated", + "scope": "invalid.deprecated", + "settings": { + "foreground": "#ffffff" + } + }, + { + "name": "Unimplemented", + "scope": "invalid.unimplemented", + "settings": { + "foreground": "#ffffff" + } + }, + { + "name": "Source Json Meta Structure Dictionary Json > String Quoted Json", + "scope": "source.json meta.structure.dictionary.json > string.quoted.json", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Source Json Meta Structure Dictionary Json > String Quoted Json > Punctuation String", + "scope": "source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Source Json Meta Structure Dictionary Json > Value Json > String Quoted Json,source Json Meta Structure Array Json > Value Json > String Quoted Json,source Json Meta Structure Dictionary Json > Value Json > String Quoted Json > Punctuation,source Json Meta Structure Array Json > Value Json > String Quoted Json > Punctuation", + "scope": "source.json meta.structure.dictionary.json > value.json > string.quoted.json,source.json meta.structure.array.json > value.json > string.quoted.json,source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation,source.json meta.structure.array.json > value.json > string.quoted.json > punctuation", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "Source Json Meta Structure Dictionary Json > Constant Language Json,source Json Meta Structure Array Json > Constant Language Json", + "scope": "source.json meta.structure.dictionary.json > constant.language.json,source.json meta.structure.array.json > constant.language.json", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "[VSCODE-CUSTOM] JSON Property Name", + "scope": "support.type.property-name.json", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "[VSCODE-CUSTOM] JSON Punctuation for Property Name", + "scope": "support.type.property-name.json punctuation", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "laravel blade tag", + "scope": "text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "laravel blade @", + "scope": "text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "use statement for other classes", + "scope": "support.other.namespace.use.php,support.other.namespace.use-as.php,support.other.namespace.php,entity.other.alias.php,meta.interface.php", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "error suppression", + "scope": "keyword.operator.error-control.php", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "php instanceof", + "scope": "keyword.operator.type.php", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "style double quoted array index normal begin", + "scope": "punctuation.section.array.begin.php", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "style double quoted array index normal end", + "scope": "punctuation.section.array.end.php", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "php illegal.non-null-typehinted", + "scope": "invalid.illegal.non-null-typehinted.php", + "settings": { + "foreground": "#f44747" + } + }, + { + "name": "php types", + "scope": "storage.type.php,meta.other.type.phpdoc.php,keyword.other.type.php,keyword.other.array.phpdoc.php", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "php call-function", + "scope": "meta.function-call.php,meta.function-call.object.php,meta.function-call.static.php", + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "php function-resets", + "scope": "punctuation.definition.parameters.begin.bracket.round.php,punctuation.definition.parameters.end.bracket.round.php,punctuation.separator.delimiter.php,punctuation.section.scope.begin.php,punctuation.section.scope.end.php,punctuation.terminator.expression.php,punctuation.definition.arguments.begin.bracket.round.php,punctuation.definition.arguments.end.bracket.round.php,punctuation.definition.storage-type.begin.bracket.round.php,punctuation.definition.storage-type.end.bracket.round.php,punctuation.definition.array.begin.bracket.round.php,punctuation.definition.array.end.bracket.round.php,punctuation.definition.begin.bracket.round.php,punctuation.definition.end.bracket.round.php,punctuation.definition.begin.bracket.curly.php,punctuation.definition.end.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php,punctuation.definition.section.switch-block.start.bracket.curly.php,punctuation.definition.section.switch-block.begin.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "support php constants", + "scope": "support.constant.core.rust", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "support php constants", + "scope": "support.constant.ext.php,support.constant.std.php,support.constant.core.php,support.constant.parser-token.php", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "php goto", + "scope": "entity.name.goto-label.php,support.other.php", + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "php logical/bitwise operator", + "scope": "keyword.operator.logical.php,keyword.operator.bitwise.php,keyword.operator.arithmetic.php", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "php regexp operator", + "scope": "keyword.operator.regexp.php", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "php comparison", + "scope": "keyword.operator.comparison.php", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "php heredoc/nowdoc", + "scope": "keyword.operator.heredoc.php,keyword.operator.nowdoc.php", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "python function decorator @", + "scope": "meta.function.decorator.python", + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "python function support", + "scope": "support.token.decorator.python,meta.function.decorator.identifier.python", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "parameter function js/ts", + "scope": "function.parameter", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "brace function", + "scope": "function.brace", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "parameter function ruby cs", + "scope": "function.parameter.ruby, function.parameter.cs", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "constant.language.symbol.ruby", + "scope": "constant.language.symbol.ruby", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "rgb-value", + "scope": "rgb-value", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "rgb value", + "scope": "inline-color-decoration rgb-value", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "rgb value less", + "scope": "less rgb-value", + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "sass selector", + "scope": "selector.sass", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "ts primitive/builtin types", + "scope": "support.type.primitive.ts,support.type.builtin.ts,support.type.primitive.tsx,support.type.builtin.tsx", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "block scope", + "scope": "block.scope.end,block.scope.begin", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "cs storage type", + "scope": "storage.type.cs", + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "cs local variable", + "scope": "entity.name.variable.local.cs", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "scope": "token.info-token", + "settings": { + "foreground": "#88ab75" + } + }, + { + "scope": "token.warn-token", + "settings": { + "foreground": "#fffd77" + } + }, + { + "scope": "token.error-token", + "settings": { + "foreground": "#f44747" + } + }, + { + "scope": "token.debug-token", + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "String interpolation", + "scope": [ + "punctuation.definition.template-expression.begin", + "punctuation.definition.template-expression.end", + "punctuation.section.embedded" + ], + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Reset JavaScript string interpolation expression", + "scope": ["meta.template.expression"], + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Import module JS", + "scope": ["keyword.operator.module"], + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "js Flowtype", + "scope": ["support.type.type.flowtype"], + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "js Flow", + "scope": ["support.type.primitive"], + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "js class prop", + "scope": ["meta.property.object"], + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "js func parameter", + "scope": ["variable.parameter.function.js"], + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "js template literals begin", + "scope": ["keyword.other.template.begin"], + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "js template literals end", + "scope": ["keyword.other.template.end"], + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "js template literals variable braces begin", + "scope": ["keyword.other.substitution.begin"], + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "js template literals variable braces end", + "scope": ["keyword.other.substitution.end"], + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "js operator.assignment", + "scope": ["keyword.operator.assignment"], + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "go operator", + "scope": ["keyword.operator.assignment.go"], + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "go operator", + "scope": [ + "keyword.operator.arithmetic.go", + "keyword.operator.address.go" + ], + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Go package name", + "scope": ["entity.name.package.go"], + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "elm prelude", + "scope": ["support.type.prelude.elm"], + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "elm constant", + "scope": ["support.constant.elm"], + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "template literal", + "scope": ["punctuation.quasi.element"], + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "html/pug (jade) escaped characters and entities", + "scope": ["constant.character.entity"], + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "styling css pseudo-elements/classes to be able to differentiate from classes which are the same colour", + "scope": [ + "entity.other.attribute-name.pseudo-element", + "entity.other.attribute-name.pseudo-class" + ], + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "Clojure globals", + "scope": ["entity.global.clojure"], + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "Clojure symbols", + "scope": ["meta.symbol.clojure"], + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Clojure constants", + "scope": ["constant.keyword.clojure"], + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "CoffeeScript Function Argument", + "scope": ["meta.arguments.coffee", "variable.parameter.function.coffee"], + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Ini Default Text", + "scope": ["source.ini"], + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "Makefile prerequisities", + "scope": ["meta.scope.prerequisites.makefile"], + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Makefile text colour", + "scope": ["source.makefile"], + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "Groovy import names", + "scope": ["storage.modifier.import.groovy"], + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "Groovy Methods", + "scope": ["meta.method.groovy"], + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "Groovy Variables", + "scope": ["meta.definition.variable.name.groovy"], + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Groovy Inheritance", + "scope": ["meta.definition.class.inherited.classes.groovy"], + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "HLSL Semantic", + "scope": ["support.variable.semantic.hlsl"], + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "HLSL Types", + "scope": [ + "support.type.texture.hlsl", + "support.type.sampler.hlsl", + "support.type.object.hlsl", + "support.type.object.rw.hlsl", + "support.type.fx.hlsl", + "support.type.object.hlsl" + ], + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "SQL Variables", + "scope": ["text.variable", "text.bracketed"], + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "types", + "scope": ["support.type.swift", "support.type.vb.asp"], + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "heading 1, keyword", + "scope": ["entity.name.function.xi"], + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "heading 2, callable", + "scope": ["entity.name.class.xi"], + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "heading 3, property", + "scope": ["constant.character.character-class.regexp.xi"], + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "heading 4, type, class, interface", + "scope": ["constant.regexp.xi"], + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "heading 5, enums, preprocessor, constant, decorator", + "scope": ["keyword.control.xi"], + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "heading 6, number", + "scope": ["invalid.xi"], + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "string", + "scope": ["beginning.punctuation.definition.quote.markdown.xi"], + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "comments", + "scope": ["beginning.punctuation.definition.list.markdown.xi"], + "settings": { + "foreground": "#5e5b5a" + } + }, + { + "name": "link", + "scope": ["constant.character.xi"], + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "accent", + "scope": ["accent.xi"], + "settings": { + "foreground": "#88ab75" + } + }, + { + "name": "wikiword", + "scope": ["wikiword.xi"], + "settings": { + "foreground": "#fffd77" + } + }, + { + "name": "language operators like '+', '-' etc", + "scope": ["constant.other.color.rgb-value.xi"], + "settings": { + "foreground": "#ffffff" + } + }, + { + "name": "elements to dim", + "scope": ["punctuation.definition.tag.xi"], + "settings": { + "foreground": "#5e5b5a" + } + }, + { + "name": "C++/C#", + "scope": [ + "entity.name.label.cs", + "entity.name.scope-resolution.function.call", + "entity.name.scope-resolution.function.definition" + ], + "settings": { + "foreground": "#6fa6c2" + } + }, + { + "name": "Markdown underscore-style headers", + "scope": [ + "entity.name.label.cs", + "markup.heading.setext.1.markdown", + "markup.heading.setext.2.markdown" + ], + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "meta.brace.square", + "scope": [" meta.brace.square"], + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "name": "Comments", + "scope": "comment, punctuation.definition.comment", + "settings": { + "fontStyle": "italic", + "foreground": "#5e5b5a" + } + }, + { + "name": "[VSCODE-CUSTOM] Markdown Quote", + "scope": "markup.quote.markdown", + "settings": { + "foreground": "#5e5b5a" + } + }, + { + "name": "punctuation.definition.block.sequence.item.yaml", + "scope": "punctuation.definition.block.sequence.item.yaml", + "settings": { + "foreground": "#ffd9ce" + } + }, + { + "scope": ["constant.language.symbol.elixir"], + "settings": { + "foreground": "#2978a0" + } + }, + { + "name": "js/ts italic", + "scope": "entity.other.attribute-name.js,entity.other.attribute-name.ts,entity.other.attribute-name.jsx,entity.other.attribute-name.tsx,variable.parameter,variable.language.super", + "settings": { + "fontStyle": "italic" + } + }, + { + "name": "comment", + "scope": "comment.line.double-slash,comment.block.documentation", + "settings": { + "fontStyle": "italic" + } + }, + { + "name": "Python Keyword Control", + "scope": "keyword.control.import.python,keyword.control.flow.python", + "settings": { + "fontStyle": "italic" + } + }, + { + "name": "markup.italic.markdown", + "scope": "markup.italic.markdown", + "settings": { + "fontStyle": "italic" + } + } + ], + "colors": { + "foreground": "#ffded6", + "focusBorder": "#2978a0", + "selection.background": "#2978a0", + "scrollbar.shadow": "#00000000", + "activityBar.foreground": "#ffded6", + "activityBar.background": "#2c2626", + "activityBar.inactiveForeground": "#ffded654", + "activityBarBadge.foreground": "#161313", + "activityBarBadge.background": "#88ab75", + "sideBar.background": "#161313", + "sideBar.foreground": "#ffded6", + "sideBarSectionHeader.background": "#22222200", + "sideBarSectionHeader.foreground": "#ffd9ce", + "sideBarSectionHeader.border": "#ffffff33", + "sideBarTitle.foreground": "#ffded6", + "sideBar.border": "#88ab75", + "list.inactiveSelectionBackground": "#2f2323a8", + "list.inactiveSelectionForeground": "#88ab75", + "list.hoverBackground": "#88ab754d", + "list.hoverForeground": "#ffded6", + "list.activeSelectionBackground": "#194961", + "list.activeSelectionForeground": "#ffefeb", + "tree.indentGuidesStroke": "#194961", + "list.dropBackground": "#2f2323a8", + "list.highlightForeground": "#0097fb", + "list.focusBackground": "#062f4a", + "list.focusForeground": "#cccccc", + "listFilterWidget.background": "#653723", + "listFilterWidget.outline": "#00000000", + "listFilterWidget.noMatchesOutline": "#be1100", + "statusBar.foreground": "#ffefeb", + "statusBar.background": "#194961", + "statusBarItem.hoverBackground": "#ffffff1f", + "statusBar.debuggingBackground": "#b8b500", + "statusBar.debuggingForeground": "#181212", + "statusBar.noFolderBackground": "#88ab75", + "statusBar.noFolderForeground": "#181212", + "statusBarItem.remoteBackground": "#88ab75", + "statusBarItem.remoteForeground": "#194961", + "titleBar.activeBackground": "#181212", + "titleBar.activeForeground": "#ffd9ce", + "titleBar.inactiveBackground": "#3c3c3c99", + "titleBar.inactiveForeground": "#cccccc99", + "titleBar.border": "#00000000", + "menubar.selectionForeground": "#ffefeb", + "menubar.selectionBackground": "#ffefeb1a", + "menu.foreground": "#ffefeb", + "menu.background": "#2c2626", + "menu.selectionForeground": "#ffd9ce", + "menu.selectionBackground": "#181212", + "menu.selectionBorder": "#00000000", + "menu.separatorBackground": "#bbbbbb", + "menu.border": "#00000085", + "button.background": "#194961", + "button.foreground": "#ffefeb", + "button.hoverBackground": "#2978a0", + "button.secondaryForeground": "#ffefeb", + "button.secondaryBackground": "#2c2626", + "button.secondaryHoverBackground": "#5e5b5a", + "input.background": "#3c3c3c", + "input.border": "#00000000", + "input.foreground": "#cccccc", + "inputOption.activeBackground": "#007fd466", + "inputOption.activeBorder": "#007acc00", + "inputOption.activeForeground": "#ffffff", + "input.placeholderForeground": "#a6a6a6", + "textLink.foreground": "#2978a0", + "editor.background": "#161313", + "editor.foreground": "#ffd9ce", + "editorLineNumber.foreground": "#858585", + "editorCursor.foreground": "#aeafad", + "editorCursor.background": "#000000", + "editor.selectionBackground": "#194961", + "editor.inactiveSelectionBackground": "#3a3d41", + "editorWhitespace.foreground": "#e3e4e229", + "editor.selectionHighlightBackground": "#add6ff26", + "editor.selectionHighlightBorder": "#495F77", + "editor.findMatchBackground": "#515c6a", + "editor.findMatchBorder": "#74879f", + "editor.findMatchHighlightBackground": "#ea5c0055", + "editor.findMatchHighlightBorder": "#ffffff00", + "editor.findRangeHighlightBackground": "#3a3d4166", + "editor.findRangeHighlightBorder": "#ffffff00", + "editor.rangeHighlightBackground": "#ffffff0b", + "editor.rangeHighlightBorder": "#ffffff00", + "editor.hoverHighlightBackground": "#264f7840", + "editor.wordHighlightStrongBackground": "#004972b8", + "editor.wordHighlightBackground": "#575757b8", + "editor.lineHighlightBackground": "#ffffff0A", + "editor.lineHighlightBorder": "#282828", + "editorLineNumber.activeForeground": "#c6c6c6", + "editorLink.activeForeground": "#4e94ce", + "editorIndentGuide.background": "#404040", + "editorIndentGuide.activeBackground": "#707070", + "editorRuler.foreground": "#5a5a5a", + "editorBracketMatch.background": "#0064001a", + "editorBracketMatch.border": "#888888", + "editor.foldBackground": "#264f784d", + "editorOverviewRuler.background": "#25252500", + "editorOverviewRuler.border": "#7f7f7f4d", + "editorError.foreground": "#f48771", + "editorError.background": "#B73A3400", + "editorError.border": "#ffffff00", + "editorWarning.foreground": "#cca700", + "editorWarning.background": "#A9904000", + "editorWarning.border": "#ffffff00", + "editorInfo.foreground": "#75beff", + "editorInfo.background": "#4490BF00", + "editorInfo.border": "#4490BF00", + "editorGutter.background": "#2c2626", + "editorGutter.modifiedBackground": "#0c7d9d", + "editorGutter.addedBackground": "#587c0c", + "editorGutter.deletedBackground": "#94151b", + "editorGutter.foldingControlForeground": "#c5c5c5", + "editorCodeLens.foreground": "#999999", + "editorGroup.border": "#88ab75", + "diffEditor.insertedTextBackground": "#9bb95533", + "diffEditor.removedTextBackground": "#ff000033", + "diffEditor.border": "#88ab75", + "panel.background": "#0b0909", + "panel.border": "#88ab75", + "panelTitle.activeBorder": "#ffefeb", + "panelTitle.activeForeground": "#ffefeb", + "panelTitle.inactiveForeground": "#ffefeb99", + "badge.background": "#88ab75", + "badge.foreground": "#161313", + "terminal.foreground": "#ffded6", + "terminal.selectionBackground": "#ffffff40", + "terminalCursor.background": "#194961", + "terminalCursor.foreground": "#ffefeb", + "terminal.border": "#88ab7559", + "terminal.ansiBlack": "#000000", + "terminal.ansiBlue": "#2472c8", + "terminal.ansiBrightBlack": "#666666", + "terminal.ansiBrightBlue": "#3b8eea", + "terminal.ansiBrightCyan": "#29b8db", + "terminal.ansiBrightGreen": "#23d18b", + "terminal.ansiBrightMagenta": "#d670d6", + "terminal.ansiBrightRed": "#f14c4c", + "terminal.ansiBrightWhite": "#e5e5e5", + "terminal.ansiBrightYellow": "#f5f543", + "terminal.ansiCyan": "#11a8cd", + "terminal.ansiGreen": "#0dbc79", + "terminal.ansiMagenta": "#bc3fbc", + "terminal.ansiRed": "#cd3131", + "terminal.ansiWhite": "#ffefeb", + "terminal.ansiYellow": "#e5e510", + "breadcrumb.background": "#2c2626", + "breadcrumb.foreground": "#ffefeb", + "breadcrumb.focusForeground": "#fffd77", + "editorGroupHeader.border": "#ff000000", + "editorGroupHeader.tabsBackground": "#194961", + "tab.activeForeground": "#ffded6", + "tab.border": "#88ab75", + "tab.activeBackground": "#2c2626", + "tab.activeBorder": "#00000000", + "tab.activeBorderTop": "#00000000", + "tab.inactiveBackground": "#194961", + "tab.inactiveForeground": "#ffefeb", + "scrollbarSlider.background": "#79797966", + "scrollbarSlider.hoverBackground": "#646464b3", + "scrollbarSlider.activeBackground": "#bfbfbf66", + "progressBar.background": "#88ab75", + "widget.shadow": "#0000005c", + "editorWidget.foreground": "#ffefeb", + "editorWidget.background": "#2c2626", + "editorWidget.resizeBorder": "#2978a0", + "pickerGroup.border": "#194961", + "pickerGroup.foreground": "#2978a0", + "debugToolBar.background": "#333333", + "debugToolBar.border": "#fffd77", + "notifications.foreground": "#ffded6", + "notifications.background": "#2c2626", + "notificationToast.border": "#88ab75", + "notificationsErrorIcon.foreground": "#f48771", + "notificationsWarningIcon.foreground": "#cca700", + "notificationsInfoIcon.foreground": "#75beff", + "notificationCenter.border": "#88ab75", + "notificationCenterHeader.foreground": "#cccccc", + "notificationCenterHeader.background": "#161313", + "notifications.border": "#88ab75", + "gitDecoration.addedResourceForeground": "#81b88b", + "gitDecoration.conflictingResourceForeground": "#6c6cc4", + "gitDecoration.deletedResourceForeground": "#c74e39", + "gitDecoration.ignoredResourceForeground": "#8c8c8c", + "gitDecoration.modifiedResourceForeground": "#e2c08d", + "gitDecoration.stageDeletedResourceForeground": "#c74e39", + "gitDecoration.stageModifiedResourceForeground": "#e2c08d", + "gitDecoration.submoduleResourceForeground": "#8db9e2", + "gitDecoration.untrackedResourceForeground": "#73c991", + "editorMarkerNavigation.background": "#2c2626", + "editorMarkerNavigationError.background": "#88ab75", + "editorMarkerNavigationWarning.background": "#b8b500", + "editorMarkerNavigationInfo.background": "#2978a0", + "merge.currentHeaderBackground": "#367366", + "merge.currentContentBackground": "#27403B", + "merge.incomingHeaderBackground": "#395F8F", + "merge.incomingContentBackground": "#28384B", + "merge.commonHeaderBackground": "#383838", + "merge.commonContentBackground": "#282828", + "editorSuggestWidget.background": "#2c2626", + "editorSuggestWidget.border": "#0b0909", + "editorSuggestWidget.foreground": "#ffded6", + "editorSuggestWidget.highlightForeground": "#2978a0", + "editorSuggestWidget.selectedBackground": "#194961", + "editorHoverWidget.foreground": "#ffded6", + "editorHoverWidget.background": "#2c2626", + "editorHoverWidget.border": "#0b0909", + "peekView.border": "#2978a0", + "peekViewEditor.background": "#001f33", + "peekViewEditorGutter.background": "#001f33", + "peekViewEditor.matchHighlightBackground": "#b8b50066", + "peekViewEditor.matchHighlightBorder": "#b8b500", + "peekViewResult.background": "#2c2626", + "peekViewResult.fileForeground": "#ffefeb", + "peekViewResult.lineForeground": "#bbbbbb", + "peekViewResult.matchHighlightBackground": "#ea5c004d", + "peekViewResult.selectionBackground": "#3399ff33", + "peekViewResult.selectionForeground": "#ffefeb", + "peekViewTitle.background": "#2c2626", + "peekViewTitleDescription.foreground": "#ccccccb3", + "peekViewTitleLabel.foreground": "#ffefeb", + "icon.foreground": "#ffded6", + "checkbox.background": "#3c3c3c", + "checkbox.foreground": "#cccccc", + "checkbox.border": "#00000000", + "dropdown.background": "#3c3c3c", + "dropdown.foreground": "#cccccc", + "dropdown.border": "#00000000", + "minimapGutter.addedBackground": "#587c0c", + "minimapGutter.modifiedBackground": "#0c7d9d", + "minimapGutter.deletedBackground": "#94151b", + "minimap.findMatchHighlight": "#515c6a", + "minimap.selectionHighlight": "#194961", + "minimap.errorHighlight": "#f48771", + "minimap.warningHighlight": "#cca700", + "minimap.background": "#161313", + "sideBar.dropBackground": "#2f2323a8", + "editorGroup.emptyBackground": "#161313", + "panelSection.border": "#88ab7559", + "statusBarItem.activeBackground": "#FFFFFF25", + "settings.headerForeground": "#ffded6", + "settings.focusedRowBackground": "#ffffff07", + "walkThrough.embeddedEditorBackground": "#00000050", + "breadcrumb.activeSelectionForeground": "#fffd77", + "editorGutter.commentRangeForeground": "#c5c5c5", + "debugExceptionWidget.background": "#333333", + "debugExceptionWidget.border": "#fffd77" + } +} diff --git a/vsc-extension-quickstart.md b/vsc-extension-quickstart.md new file mode 100644 index 0000000..c7b7e72 --- /dev/null +++ b/vsc-extension-quickstart.md @@ -0,0 +1,28 @@ +# Welcome to your VS Code Extension + +## What's in the folder + +* This folder contains all of the files necessary for your color theme extension. +* `package.json` - this is the manifest file that defines the location of the theme file and specifies the base theme of the theme. +* `themes/Redder Than Siena-color-theme.json` - the color theme definition file. + +## Get up and running straight away + +* Press `F5` to open a new window with your extension loaded. +* Open `File > Preferences > Color Themes` and pick your color theme. +* Open a file that has a language associated. The languages' configured grammar will tokenize the text and assign 'scopes' to the tokens. To examine these scopes, invoke the `Developer: Inspect Editor Tokens and Scopes` command from the Command Palette (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac). + +## Make changes + +* Changes to the theme file are automatically applied to the Extension Development Host window. + +## Adopt your theme to Visual Studio Code + +* The token colorization is done based on standard TextMate themes. Colors are matched against one or more scopes. + +To learn more about scopes and how they're used, check out the [color theme](https://code.visualstudio.com/api/extension-guides/color-theme) documentation. + +## Install your extension + +* To start using your extension with Visual Studio Code copy it into the `/.vscode/extensions` folder and restart Code. +* To share your extension with the world, read on https://code.visualstudio.com/docs about publishing an extension.