shiki 1.21.0 → 1.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle-full.d.mts +1 -1
- package/dist/bundle-web.d.mts +2 -2
- package/dist/bundle-web.mjs +5 -0
- package/dist/langs/hy.mjs +1 -1
- package/dist/langs/mermaid.mjs +1 -1
- package/dist/langs/mips.d.mts +1 -0
- package/dist/langs/mips.mjs +2 -0
- package/dist/langs/mipsasm.d.mts +1 -0
- package/dist/langs/mipsasm.mjs +5 -0
- package/dist/langs/mmd.d.mts +1 -0
- package/dist/langs/mmd.mjs +2 -0
- package/dist/langs/sass.mjs +1 -1
- package/dist/langs.d.mts +1 -1
- package/dist/langs.mjs +11 -0
- package/dist/themes/github-dark-default.mjs +1 -1
- package/dist/themes/github-dark-dimmed.mjs +1 -1
- package/dist/themes/github-dark-high-contrast.mjs +1 -1
- package/dist/themes/github-light-default.mjs +1 -1
- package/dist/themes/github-light-high-contrast.mjs +1 -1
- package/package.json +8 -8
package/dist/bundle-full.d.mts
CHANGED
|
@@ -27,7 +27,7 @@ declare const codeToTokens: (code: string, options: _shikijs_types.CodeToTokensO
|
|
|
27
27
|
declare const codeToTokensBase: (code: string, options: _shikijs_types.RequireKeys<_shikijs_types.CodeToTokensBaseOptions<BundledLanguage, BundledTheme>, "lang" | "theme">) => Promise<_shikijs_types.ThemedToken[][]>;
|
|
28
28
|
declare const codeToTokensWithThemes: (code: string, options: _shikijs_types.RequireKeys<_shikijs_types.CodeToTokensWithThemesOptions<BundledLanguage, BundledTheme>, "lang" | "themes">) => Promise<_shikijs_types.ThemedTokenWithVariants[][]>;
|
|
29
29
|
declare const getSingletonHighlighter: (options?: Partial<_shikijs_types.BundledHighlighterOptions<BundledLanguage, BundledTheme>> | undefined) => Promise<HighlighterGeneric<BundledLanguage, BundledTheme>>;
|
|
30
|
-
declare const getLastGrammarState: (code: string, options: _shikijs_types.CodeToTokensBaseOptions<BundledLanguage, BundledTheme>) => Promise<_shikijs_types.GrammarState
|
|
30
|
+
declare const getLastGrammarState: ((element: _shikijs_types.ThemedToken[][] | Root) => _shikijs_types.GrammarState) | ((code: string, options: _shikijs_types.CodeToTokensBaseOptions<BundledLanguage, BundledTheme>) => Promise<_shikijs_types.GrammarState>);
|
|
31
31
|
/**
|
|
32
32
|
* @deprecated Use `createHighlighter` or `getSingletonHighlighter` instead.
|
|
33
33
|
*/
|
package/dist/bundle-web.d.mts
CHANGED
|
@@ -15,7 +15,7 @@ declare const bundledLanguagesBase: {
|
|
|
15
15
|
declare const bundledLanguagesAlias: {
|
|
16
16
|
[k: string]: DynamicImportLanguageRegistration;
|
|
17
17
|
};
|
|
18
|
-
type BundledLanguage = 'angular-html' | 'angular-ts' | 'astro' | 'bash' | 'blade' | 'c' | 'c++' | 'coffee' | 'coffeescript' | 'cpp' | 'css' | 'glsl' | 'gql' | 'graphql' | 'haml' | 'handlebars' | 'hbs' | 'html' | 'html-derivative' | 'http' | 'imba' | 'jade' | 'java' | 'javascript' | 'jinja' | 'jison' | 'jl' | 'js' | 'json' | 'jsonc' | 'jsonl' | 'jsx' | 'julia' | 'less' | 'lit' | 'markdown' | 'marko' | 'md' | 'mdc' | 'mdx' | 'php' | 'postcss' | 'pug' | 'py' | 'python' | 'r' | 'regex' | 'regexp' | 'sass' | 'scss' | 'sh' | 'shell' | 'shellscript' | 'sql' | 'styl' | 'stylus' | 'svelte' | 'ts' | 'ts-tags' | 'tsx' | 'typescript' | 'vue' | 'vue-html' | 'wasm' | 'wgsl' | 'xml' | 'yaml' | 'yml' | 'zsh';
|
|
18
|
+
type BundledLanguage = 'angular-html' | 'angular-ts' | 'astro' | 'bash' | 'blade' | 'c' | 'c++' | 'coffee' | 'coffeescript' | 'cpp' | 'css' | 'glsl' | 'gql' | 'graphql' | 'haml' | 'handlebars' | 'hbs' | 'html' | 'html-derivative' | 'http' | 'imba' | 'jade' | 'java' | 'javascript' | 'jinja' | 'jison' | 'jl' | 'js' | 'json' | 'json5' | 'jsonc' | 'jsonl' | 'jsx' | 'julia' | 'less' | 'lit' | 'markdown' | 'marko' | 'md' | 'mdc' | 'mdx' | 'php' | 'postcss' | 'pug' | 'py' | 'python' | 'r' | 'regex' | 'regexp' | 'sass' | 'scss' | 'sh' | 'shell' | 'shellscript' | 'sql' | 'styl' | 'stylus' | 'svelte' | 'ts' | 'ts-tags' | 'tsx' | 'typescript' | 'vue' | 'vue-html' | 'wasm' | 'wgsl' | 'xml' | 'yaml' | 'yml' | 'zsh';
|
|
19
19
|
declare const bundledLanguages: Record<BundledLanguage, DynamicImportLanguageRegistration>;
|
|
20
20
|
|
|
21
21
|
type Highlighter = HighlighterGeneric<BundledLanguage, BundledTheme>;
|
|
@@ -36,7 +36,7 @@ declare const codeToTokensBase: (code: string, options: _shikijs_types.RequireKe
|
|
|
36
36
|
declare const codeToTokens: (code: string, options: _shikijs_types.CodeToTokensOptions<BundledLanguage, BundledTheme>) => Promise<_shikijs_types.TokensResult>;
|
|
37
37
|
declare const codeToTokensWithThemes: (code: string, options: _shikijs_types.RequireKeys<_shikijs_types.CodeToTokensWithThemesOptions<BundledLanguage, BundledTheme>, "lang" | "themes">) => Promise<_shikijs_types.ThemedTokenWithVariants[][]>;
|
|
38
38
|
declare const getSingletonHighlighter: (options?: Partial<_shikijs_types.BundledHighlighterOptions<BundledLanguage, BundledTheme>> | undefined) => Promise<HighlighterGeneric<BundledLanguage, BundledTheme>>;
|
|
39
|
-
declare const getLastGrammarState: (code: string, options: _shikijs_types.CodeToTokensBaseOptions<BundledLanguage, BundledTheme>) => Promise<_shikijs_types.GrammarState
|
|
39
|
+
declare const getLastGrammarState: ((element: _shikijs_types.ThemedToken[][] | Root) => _shikijs_types.GrammarState) | ((code: string, options: _shikijs_types.CodeToTokensBaseOptions<BundledLanguage, BundledTheme>) => Promise<_shikijs_types.GrammarState>);
|
|
40
40
|
/**
|
|
41
41
|
* @deprecated Use `createHighlighter` or `getSingletonHighlighter` instead.
|
|
42
42
|
*/
|
package/dist/bundle-web.mjs
CHANGED
|
@@ -126,6 +126,11 @@ const bundledLanguagesInfo = [
|
|
|
126
126
|
"name": "JSON",
|
|
127
127
|
"import": () => import('./langs/json.mjs')
|
|
128
128
|
},
|
|
129
|
+
{
|
|
130
|
+
"id": "json5",
|
|
131
|
+
"name": "JSON5",
|
|
132
|
+
"import": () => import('./langs/json5.mjs')
|
|
133
|
+
},
|
|
129
134
|
{
|
|
130
135
|
"id": "jsonc",
|
|
131
136
|
"name": "JSON with Comments",
|
package/dist/langs/hy.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const lang = Object.freeze(JSON.parse("{\"displayName\":\"Hy\",\"name\":\"hy\",\"patterns\":[{\"include\":\"#all\"}],\"repository\":{\"all\":{\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#constants\"},{\"include\":\"#keywords\"},{\"include\":\"#strings\"},{\"include\":\"#operators\"},{\"include\":\"#keysym\"},{\"include\":\"#symbol\"}]},\"comment\":{\"patterns\":[{\"match\":\"(;).*$\",\"name\":\"comment.line.hy\"}]},\"constants\":{\"patterns\":[{\"match\":\"(?<=[{\\\\[(\\\\s])(\\\\d+(\\\\.\\\\d+)?|(#x)[0-9a-fA-F]+|(#o)[0-7]+|(#b)[01]+)(?=[\\\\s;()'\\\",\\\\[\\\\]{}])\",\"name\":\"constant.numeric.hy\"}]},\"keysym\":{\"match\":\"(?<![\\\\.:\\\\w_\\\\-=!@$%^&?\\\\/<>*]):[\\\\.:\\\\w_\\\\-=!@$%^&?\\\\/<>*]*\",\"name\":\"variable.other.constant\"},\"keywords\":{\"patterns\":[{\"match\":\"\\\\b(
|
|
1
|
+
const lang = Object.freeze(JSON.parse("{\"displayName\":\"Hy\",\"name\":\"hy\",\"patterns\":[{\"include\":\"#all\"}],\"repository\":{\"all\":{\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#constants\"},{\"include\":\"#keywords\"},{\"include\":\"#strings\"},{\"include\":\"#operators\"},{\"include\":\"#keysym\"},{\"include\":\"#builtin\"},{\"include\":\"#symbol\"}]},\"builtin\":{\"patterns\":[{\"match\":\"\\\\b(abs|all|any|ascii|bin|breakpoint|callable|chr|compile|delattr|dir|divmod|eval|exec|format|getattr|globals|hasattr|hash|hex|id|input|isinstance|issubclass|iter|aiter|len|locals|max|min|next|anext|oct|ord|pow|print|repr|round|setattr|sorted|sum|vars|False|None|True|NotImplemented|bool|memoryview|bytearray|bytes|classmethod|complex|dict|enumerate|filter|float|frozenset|property|int|list|map|object|range|reversed|set|slice|staticmethod|str|super|tuple|type|zip|open|quit|exit|copyright|credits|help)[\\\\s)]\",\"name\":\"storage.builtin.hy\"},{\"match\":\"(?<=\\\\(\\\\s*)\\\\.\\\\.\\\\.[\\\\s)]\",\"name\":\"storage.builtin.dots.hy\"}]},\"comment\":{\"patterns\":[{\"match\":\"(;).*$\",\"name\":\"comment.line.hy\"}]},\"constants\":{\"patterns\":[{\"match\":\"(?<=[{\\\\[(\\\\s])(\\\\d+(\\\\.\\\\d+)?|(#x)[0-9a-fA-F]+|(#o)[0-7]+|(#b)[01]+)(?=[\\\\s;()'\\\",\\\\[\\\\]{}])\",\"name\":\"constant.numeric.hy\"}]},\"keysym\":{\"match\":\"(?<![\\\\.:\\\\w_\\\\-=!@$%^&?\\\\/<>*]):[\\\\.:\\\\w_\\\\-=!@$%^&?\\\\/<>*]*\",\"name\":\"variable.other.constant\"},\"keywords\":{\"patterns\":[{\"match\":\"\\\\b(and|await|match|let|annotate|assert|break|chainc|cond|continue|deftype|do|except\\\\*?|finally|else|defreader|([dgls])?for|set[vx]|defclass|defmacro|del|export|eval-and-compile|eval-when-compile|get|global|if|import|(de)?fn|nonlocal|not-in|or|(quasi)?quote|require|return|cut|raise|try|unpack-iterable|unpack-mapping|unquote|unquote-splice|when|while|with|yield|local-macros|in|is|py(s)?|pragma|nonlocal|(is-)?not)[\\\\s)]\",\"name\":\"keyword.control.hy\"},{\"match\":\"(?<=\\\\(\\\\s*)\\\\.[\\\\s)]\",\"name\":\"keyword.control.dot.hy\"}]},\"operators\":{\"patterns\":[{\"match\":\"(?<=\\\\()\\\\s*(\\\\+=?|\\\\/\\\\/?=?|\\\\*\\\\*?=?|--?=?|[!<>]?=|@=?|%=?|<<?=?|>>?=?|&=?|\\\\|=?|\\\\^|~@|~=?|#\\\\*\\\\*?)\",\"name\":\"keyword.control.hy\"}]},\"strings\":{\"begin\":\"(f?\\\"|}(?=[^\\n]*?[{\\\"]))\",\"end\":\"(\\\"|(?<=[\\\"}][^\\n]*?){)\",\"name\":\"string.quoted.double.hy\",\"patterns\":[{\"match\":\"\\\\\\\\.\",\"name\":\"constant.character.escape.hy\"}]},\"symbol\":{\"match\":\"(?<![\\\\.:\\\\w_\\\\-=!@$%^&?/<>*#])[\\\\.a-zA-ZΑ-Ωα-ω_\\\\-=!@$%^<?/<>*#][\\\\.:\\\\w_\\\\-=!@$%^&?/<>*#]*\",\"name\":\"variable.other.hy\"}},\"scopeName\":\"source.hy\"}"))
|
|
2
2
|
|
|
3
3
|
export default [
|
|
4
4
|
lang
|
package/dist/langs/mermaid.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const lang = Object.freeze(JSON.parse("{\"displayName\":\"Mermaid\",\"fileTypes\":[],\"injectionSelector\":\"L:text.html.markdown\",\"name\":\"mermaid\",\"patterns\":[{\"include\":\"#mermaid-code-block\"},{\"include\":\"#mermaid-code-block-with-attributes\"},{\"include\":\"#mermaid-ado-code-block\"}],\"repository\":{\"mermaid\":{\"patterns\":[{\"begin\":\"^\\\\s*(classDiagram)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"Class Diagram\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"entity.name.type.class.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"entity.name.type.class.mermaid\"},\"6\":{\"name\":\"keyword.control.mermaid\"},\"7\":{\"name\":\"string\"}},\"comment\":\"(class name) (\\\"multiplicity relationship\\\")? (relationship) (\\\"multiplicity relationship\\\")? (class name) :? (labelText)?\",\"match\":\"(?i)([\\\\w-]+)\\\\s(\\\"(?:\\\\d+|\\\\*|0..\\\\d+|1..\\\\d+|1..\\\\*)\\\")?\\\\s?(--o|--\\\\*|<--|-->|<\\\\.\\\\.|\\\\.\\\\.>|<\\\\|\\\\.\\\\.|\\\\.\\\\.\\\\|>|<\\\\|--|--\\\\|>|--\\\\*|--|\\\\.\\\\.|\\\\*--|o--)\\\\s(\\\"(?:\\\\d+|\\\\*|0..\\\\d+|1..\\\\d+|1..\\\\*)\\\")?\\\\s?([\\\\w-]+)\\\\s?(:)?\\\\s(.*)$\"},{\"captures\":{\"1\":{\"name\":\"entity.name.type.class.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"entity.name.function.mermaid\"},\"5\":{\"name\":\"punctuation.parenthesis.open.mermaid\"},\"6\":{\"name\":\"storage.type.mermaid\"},\"7\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"8\":{\"name\":\"storage.type.mermaid\"},\"9\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"},\"10\":{\"name\":\"entity.name.variable.parameter.mermaid\"},\"11\":{\"name\":\"punctuation.parenthesis.closed.mermaid\"},\"12\":{\"name\":\"keyword.control.mermaid\"},\"13\":{\"name\":\"storage.type.mermaid\"},\"14\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"15\":{\"name\":\"storage.type.mermaid\"},\"16\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"}},\"comment\":\"(class name) : (visibility)?(function)( (function param/generic param)? )(classifier)? (return/generic return)?$\",\"match\":\"(?i)([\\\\w-]+)\\\\s?(:)\\\\s([+~#-])?([\\\\w-]+)(\\\\()([\\\\w-]+)?(~)?([\\\\w-]+)?(~)?\\\\s?([\\\\w-]+)?(\\\\))([*$]{0,2})\\\\s?([\\\\w-]+)?(~)?([\\\\w-]+)?(~)?$\"},{\"captures\":{\"1\":{\"name\":\"entity.name.type.class.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"storage.type.mermaid\"},\"5\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"6\":{\"name\":\"storage.type.mermaid\"},\"7\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"},\"8\":{\"name\":\"entity.name.variable.field.mermaid\"}},\"comment\":\"(class name) : (visibility)?(datatype/generic data type) (attribute name)$\",\"match\":\"(?i)([\\\\w-]+)\\\\s?(:)\\\\s([+~#-])?([\\\\w-]+)(~)?([\\\\w-]+)?(~)?\\\\s([\\\\w-]+)?$\"},{\"captures\":{\"1\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"2\":{\"name\":\"storage.type.mermaid\"},\"3\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"},\"4\":{\"name\":\"entity.name.type.class.mermaid\"}},\"comment\":\"<<(Annotation)>> (class name)\",\"match\":\"(?i)(<<)([\\\\w-]+)(>>)\\\\s?([\\\\w-]+)?\"},{\"begin\":\"(?i)(class)\\\\s+([\\\\w-]+)(~)?([\\\\w-]+)?(~)?\\\\s?({)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.type.class.mermaid\"},\"3\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"4\":{\"name\":\"storage.type.mermaid\"},\"5\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"},\"6\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"class (class name) ~?(generic type)?~? ({)\",\"end\":\"(})\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"begin\":\"(?i)\\\\s([+~#-])?([\\\\w-]+)(\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"},\"3\":{\"name\":\"punctuation.parenthesis.open.mermaid\"}},\"comment\":\"(visibility)?(function)( (function param/generic param)? )(classifier)? (return/generic return)?$\",\"end\":\"(?i)(\\\\))([*$]{0,2})\\\\s?([\\\\w-]+)?(~)?([\\\\w-]+)?(~)?$\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.parenthesis.closed.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"storage.type.mermaid\"},\"4\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"5\":{\"name\":\"storage.type.mermaid\"},\"6\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"}},\"patterns\":[{\"captures\":{\"1\":{\"name\":\"storage.type.mermaid\"},\"2\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"3\":{\"name\":\"storage.type.mermaid\"},\"4\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"},\"5\":{\"name\":\"entity.name.variable.parameter.mermaid\"}},\"comment\":\"(TBD)\",\"match\":\"(?i)\\\\s*,?\\\\s*([\\\\w-]+)?(~)?([\\\\w-]+)?(~)?\\\\s?([\\\\w-]+)?\"}]},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"storage.type.mermaid\"},\"3\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"4\":{\"name\":\"storage.type.mermaid\"},\"5\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"},\"6\":{\"name\":\"entity.name.variable.field.mermaid\"}},\"comment\":\"(visibility)?(datatype/generic data type) (attribute name)$\",\"match\":\"(?i)\\\\s([+~#-])?([\\\\w-]+)(~)?([\\\\w-]+)?(~)?\\\\s([\\\\w-]+)?$\"},{\"captures\":{\"1\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"2\":{\"name\":\"storage.type.mermaid\"},\"3\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"},\"4\":{\"name\":\"entity.name.type.class.mermaid\"}},\"comment\":\"<<(Annotation)>> (class name)\",\"match\":\"(?i)(<<)([\\\\w-]+)(>>)\\\\s?([\\\\w-]+)?\"}]},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.type.class.mermaid\"},\"3\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"4\":{\"name\":\"storage.type.mermaid\"},\"5\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"}},\"comment\":\"class (class name) ~?(generic type)?~?\",\"match\":\"(?i)(class)\\\\s+([\\\\w-]+)(~)?([\\\\w-]+)?(~)?\"}]},{\"begin\":\"^\\\\s*(erDiagram)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"Entity Relationship Diagram\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"comment\":\"(entity)\",\"match\":\"^\\\\s*([\\\\w-]+)$\",\"name\":\"variable\"},{\"begin\":\"(?i)\\\\s+([\\\\w-]+)\\\\s*({)\",\"beginCaptures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(entity) {\",\"end\":\"(})\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"patterns\":[{\"captures\":{\"1\":{\"name\":\"storage.type.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"string\"}},\"comment\":\"(type) (name) (PK|FK)? (\\\"comment\\\")?\",\"match\":\"(?i)\\\\s*([\\\\w-]+)\\\\s+([\\\\w-]+)\\\\s+(PK|FK)?\\\\s*(\\\"[\\\"($&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*\\\")?\\\\s*\"},{\"match\":\"\\\\%%.*\",\"name\":\"comment\"}]},{\"captures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"variable\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"string\"}},\"comment\":\"(entity) (relationship) (entity) : (label)\",\"match\":\"(?i)\\\\s*([\\\\w-]+)\\\\s*((?:\\\\|o|\\\\|\\\\||}o|}\\\\||one or (?:zero|more|many)|zero or (?:one|more|many)|many\\\\((?:0|1)\\\\)|only one|0\\\\+|1\\\\+?)(?:..|--)(?:o\\\\||\\\\|\\\\||o{|\\\\|{|one or (?:zero|more|many)|zero or (?:one|more|many)|many\\\\((?:0|1)\\\\)|only one|0\\\\+|1\\\\+?))\\\\s*([\\\\w-]+)\\\\s*(:)\\\\s*((?:\\\"[\\\\w\\\\s]*\\\")|(?:[\\\\w-]+))\"}]},{\"begin\":\"^\\\\s*(gantt)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"Gantt Diagram\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"}},\"match\":\"(?i)^\\\\s*(dateFormat)\\\\s+([\\\\w\\\\-\\\\.]+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"}},\"match\":\"(?i)^\\\\s*(axisFormat)\\\\s+([\\\\w\\\\%\\\\/\\\\\\\\\\\\-\\\\.]+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)(tickInterval)\\\\s+(([1-9]\\\\d*)(millisecond|second|minute|hour|day|week|month))\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s*(title)\\\\s+(\\\\s*[\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s*(excludes)\\\\s+((?:[\\\\d\\\\-,\\\\s]+|monday|tuesday|wednesday|thursday|friday|saturday|sunday|weekends)+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s+(todayMarker)\\\\s+(.*)$\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s*(section)\\\\s+(\\\\s*[\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"},{\"begin\":\"(?i)^\\\\s(.*)(:)\",\"beginCaptures\":{\"1\":{\"name\":\"string\"},\"2\":{\"name\":\"keyword.control.mermaid\"}},\"end\":\"$\",\"patterns\":[{\"match\":\"(crit|done|active|after)\",\"name\":\"entity.name.function.mermaid\"},{\"match\":\"\\\\%%.*\",\"name\":\"comment\"}]}]},{\"begin\":\"^\\\\s*(gitGraph)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"Git Graph\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"begin\":\"(?i)^\\\\s*(commit)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"commit\",\"end\":\"$\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(id)(:) (\\\"id\\\")\",\"match\":\"(?i)\\\\s*(id)(:)\\\\s?(\\\"[^\\\"\\\\n]*\\\")\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"entity.name.function.mermaid\"}},\"comment\":\"(type)(:) (COMMIT_TYPE)\",\"match\":\"(?i)\\\\s*(type)(:)\\\\s?(NORMAL|REVERSE|HIGHLIGHT)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(tag)(:) (\\\"tag\\\")\",\"match\":\"(?i)\\\\s*(tag)(:)\\\\s?(\\\"[($&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*\\\")\"}]},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"}},\"comment\":\"(checkout) (branch-name)\",\"match\":\"(?i)^\\\\s*(checkout)\\\\s*([^\\\\s\\\"]*)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"constant.numeric.decimal.mermaid\"}},\"comment\":\"(branch) (branch-name) (order)?(:) (number)\",\"match\":\"(?i)^\\\\s*(branch)\\\\s*([^\\\\s\\\"]*)\\\\s*(?:(order)(:)\\\\s?(\\\\d+))?\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"string\"}},\"comment\":\"(merge) (branch-name) (tag: \\\"tag-name\\\")?\",\"match\":\"(?i)^\\\\s*(merge)\\\\s*([^\\\\s\\\"]*)\\\\s*(?:(tag)(:)\\\\s?(\\\"[^\\\"\\\\n]*\\\"))?\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"string\"}},\"comment\":\"(cherry-pick) (id)(:)(\\\"commit-id\\\")\",\"match\":\"(?i)^\\\\s*(cherry-pick)\\\\s+(id)(:)\\\\s*(\\\"[^\\\"\\\\n]*\\\")\"}]},{\"begin\":\"^\\\\s*(graph|flowchart)\\\\s+([\\\\p{Letter} 0-9]+)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"}},\"comment\":\"Graph\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"string\"},\"5\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"\",\"match\":\"(?i)^\\\\s*(subgraph)\\\\s+(\\\\w+)(\\\\[)(\\\"?[\\\\w\\\\s*+%=\\\\\\\\/:\\\\.\\\\-'`,&^#$!?<>]*\\\"?)(\\\\])\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"}},\"match\":\"^\\\\s*(subgraph)\\\\s+([\\\\p{Letter} 0-9<>]+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"}},\"match\":\"^(?i)\\\\s*(direction)\\\\s+(RB|BT|RL|TD|LR)\"},{\"match\":\"\\\\b(end)\\\\b\",\"name\":\"keyword.control.mermaid\"},{\"begin\":\"(?i)(\\\\b(?:(?!--|==)[-\\\\w])+\\\\b\\\\s*)(\\\\(\\\\[|\\\\[\\\\[|\\\\[\\\\(|\\\\[|\\\\(+|>|\\\\{|\\\\(\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(Entity)(Edge/Shape)(Text)(Edge/Shape)\",\"end\":\"(?i)(\\\\]\\\\)|\\\\]\\\\]|\\\\)\\\\]|\\\\]|\\\\)+|\\\\}|\\\\)\\\\))\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"patterns\":[{\"begin\":\"\\\\s*(\\\")\",\"beginCaptures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(\\\"multi-line text\\\")\",\"end\":\"(\\\")\",\"endCaptures\":{\"1\":{\"name\":\"string\"}},\"patterns\":[{\"begin\":\"(?i)([^\\\"]*)\",\"beginCaptures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"capture inner text between quotes\",\"end\":\"(?=\\\")\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"comment\"}},\"match\":\"([^\\\"]*)\"}]}]},{\"captures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(single line text)\",\"match\":\"(?i)\\\\s*([$&%\\\\^/#.,?!;:*+<>_\\\\'\\\\\\\\\\\\w\\\\s]+)\"}]},{\"begin\":\"(?i)\\\\s*((?:-{2,5}|={2,5})[xo>]?\\\\|)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(Graph Link)(\\\"Multiline text\\\")(Graph Link)\",\"end\":\"(?i)(\\\\|)\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"patterns\":[{\"begin\":\"\\\\s*(\\\")\",\"beginCaptures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(\\\"multi-line text\\\")\",\"end\":\"(\\\")\",\"endCaptures\":{\"1\":{\"name\":\"string\"}},\"patterns\":[{\"begin\":\"(?i)([^\\\"]*)\",\"beginCaptures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"capture inner text between quotes\",\"end\":\"(?=\\\")\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"comment\"}},\"match\":\"([^\\\"]*)\"}]}]},{\"captures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(single line text)\",\"match\":\"(?i)\\\\s*([$&%\\\\^/#.,?!;:*+<>_\\\\'\\\\\\\\\\\\w\\\\s]+)\"}]},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"},\"3\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(Graph Link Start Arrow)(Text)(Graph Link End Arrow)\",\"match\":\"(?i)\\\\s*([xo<]?(?:-{2,5}|={2,5}|-\\\\.{1,3}|-\\\\.))((?:(?!--|==)[\\\\w\\\\s*+%=\\\\\\\\/:\\\\.\\\\-'`,\\\"&^#$!?<>\\\\[\\\\]])*)((?:-{2,5}|={2,5}|\\\\.{1,3}-|\\\\.-)[xo>]?)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(Graph Link)\",\"match\":\"(?i)\\\\s*([ox<]?(?:-.{1,3}-|-{1,3}|={1,3})[ox>]?)\"},{\"comment\":\"Entity\",\"match\":\"(\\\\b(?:(?!--|==)[-\\\\w])+\\\\b\\\\s*)\",\"name\":\"variable\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(Class)(Node(s))(ClassName)\",\"match\":\"(?i)\\\\s*(class)\\\\s+(\\\\b[-,\\\\w]+)\\\\s+(\\\\b\\\\w+\\\\b)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(ClassDef)(ClassName)(Styles)\",\"match\":\"(?i)\\\\s*(classDef)\\\\s+(\\\\b\\\\w+\\\\b)\\\\s+(\\\\b[-,:;#\\\\w]+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"variable\"},\"4\":{\"name\":\"string\"}},\"comment\":\"(Click)(Entity)(Link)?(Tooltip)\",\"match\":\"(?i)\\\\s*(click)\\\\s+(\\\\b[-\\\\w]+\\\\b\\\\s*)(\\\\b\\\\w+\\\\b)?\\\\s(\\\"*.*\\\")\"}]},{\"begin\":\"^\\\\s*(pie)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"Pie Chart\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s*(title)\\\\s+(\\\\s*[\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"},{\"begin\":\"(?i)\\\\s(.*)(:)\",\"beginCaptures\":{\"1\":{\"name\":\"string\"},\"2\":{\"name\":\"keyword.control.mermaid\"}},\"end\":\"$\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"}]}]},{\"begin\":\"^\\\\s*(quadrantChart)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"Quadrant Chart\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s*(title)\\\\s*([\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"},{\"begin\":\"(?i)^\\\\s*([xy]-axis)\\\\s+((?:(?!-->)[$&%/#.,?!*+=\\\\'\\\\\\\\\\\\-\\\\w\\\\s])*)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"comment\":\"(x|y-axis) (text) (-->)? (text)?\",\"end\":\"$\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"comment\":\"(-->) (text)\",\"match\":\"(?i)\\\\s*(-->)\\\\s*([$&%/#.,?!*+=\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"}]},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s*(quadrant-[1234])\\\\s*([\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"},{\"captures\":{\"1\":{\"name\":\"string\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"constant.numeric.decimal.mermaid\"},\"5\":{\"name\":\"keyword.control.mermaid\"},\"6\":{\"name\":\"constant.numeric.decimal.mermaid\"},\"7\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(text)(:) ([)(decimal)(,) (decimal)(])\",\"match\":\"(?i)\\\\s*([$&%/#.,?!*+=\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\\\\s*(:)\\\\s*(\\\\[)\\\\s*(\\\\d\\\\.\\\\d+)\\\\s*(,)\\\\s*(\\\\d\\\\.\\\\d+)\\\\s*(\\\\])\"}]},{\"begin\":\"^\\\\s*(requirementDiagram)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"Requirement Diagram\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"begin\":\"(?i)^\\\\s*((?:functional|interface|performance|physical)?requirement|designConstraint)\\\\s*([\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\\\\s*({)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(requirement) (name) ({)\",\"end\":\"(?i)\\\\s*(})\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"patterns\":[{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"}},\"comment\":\"(id:) (variable id)\",\"match\":\"(?i)\\\\s*(id:)\\\\s*([$&%\\\\^/#.,?!;:*+<>_\\\\'\\\\\\\\\\\\w\\\\s]+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"comment\":\"(text:) (text string)\",\"match\":\"(?i)\\\\s*(text:)\\\\s*([$&%\\\\^/#.,?!;:*+<>_\\\\'\\\\\\\\\\\\w\\\\s]+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"}},\"comment\":\"(risk:) (risk option)\",\"match\":\"(?i)\\\\s*(risk:)\\\\s*(low|medium|high)\\\\s*$\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"}},\"comment\":\"(verifyMethod)(:) (method)\",\"match\":\"(?i)\\\\s*(verifymethod:)\\\\s*(analysis|inspection|test|demonstration)\\\\s*$\"}]},{\"begin\":\"(?i)^\\\\s*(element)\\\\s*([\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\\\\s*({)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(element) (name) ({)\",\"end\":\"(?i)\\\\s*(})\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"patterns\":[{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"}},\"comment\":\"(type:) (user type)\",\"match\":\"(?i)\\\\s*(type:)\\\\s*([\\\"$&%\\\\^/#.,?!;:*+<>_\\\\'\\\\\\\\\\\\w\\\\s]+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"}},\"comment\":\"(docref:) (user ref)\",\"match\":\"(?i)\\\\s*(docref:)\\\\s*([$&%\\\\^/#.,?!;:*+<>_\\\\'\\\\\\\\\\\\w\\\\s]+)\"}]},{\"captures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"variable\"}},\"comment\":\"(source) (-) (type) (->) (destination)\",\"match\":\"(?i)^\\\\s*([\\\\w]+)\\\\s*(-)\\\\s*(contains|copies|derives|satisfies|verifies|refines|traces)\\\\s*(->)\\\\s*([\\\\w]+)\\\\s*$\"},{\"captures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"variable\"}},\"comment\":\"(destination) (<-) (type) (-) (source)\",\"match\":\"(?i)^\\\\s*([\\\\w]+)\\\\s*(<-)\\\\s*(contains|copies|derives|satisfies|verifies|refines|traces)\\\\s*(-)\\\\s*([\\\\w]+)\\\\s*$\"}]},{\"begin\":\"^\\\\s*(sequenceDiagram)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"Sequence Diagram\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"(\\\\%%|#).*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(title)(title text)\",\"match\":\"(?i)(title)\\\\s*(:)?\\\\s+(\\\\s*[\\\"()$&%\\\\^/#.,?!:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"string\"}},\"comment\":\"(participant)(Actor)(as)?(Label)?\",\"match\":\"(?i)\\\\s*(participant|actor)\\\\s+((?:(?! as )[\\\"()$&%\\\\^/#.?!*=<>\\\\'\\\\\\\\\\\\w\\\\s])+)\\\\s*(as)?\\\\s([\\\"()$&%\\\\^/#.,?!*=<>\\\\'\\\\\\\\\\\\w\\\\s]+)?\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"}},\"comment\":\"(activate/deactivate)(Actor)\",\"match\":\"(?i)\\\\s*((?:de)?activate)\\\\s+(\\\\b[\\\"()$&%^/#.?!*=<>'\\\\\\\\\\\\w\\\\s]+\\\\b\\\\)?\\\\s*)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"},\"3\":{\"name\":\"variable\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"variable\"},\"6\":{\"name\":\"keyword.control.mermaid\"},\"7\":{\"name\":\"string\"}},\"comment\":\"(Note)(direction)(Actor)(,)?(Actor)?(:)(Message)\",\"match\":\"(?i)\\\\s*(Note)\\\\s+((?:left|right)\\\\sof|over)\\\\s+(\\\\b[\\\"()$&%^/#.?!*=<>'\\\\\\\\\\\\w\\\\s]+\\\\b\\\\)?\\\\s*)(,)?(\\\\b[\\\"()$&%^/#.?!*=<>'\\\\\\\\\\\\w\\\\s]+\\\\b\\\\)?\\\\s*)?(:)(?:\\\\s+([^;#]*))?\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"comment\":\"(loop)(loop text)\",\"match\":\"(?i)\\\\s*(loop)(?:\\\\s+([^;#]*))?\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(end)\",\"match\":\"\\\\s*(end)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"comment\":\"(alt/else/option/par/and/autonumber/critical/opt)(text)\",\"match\":\"(?i)\\\\s*(alt|else|option|par|and|rect|autonumber|critical|opt)(?:\\\\s+([^#;]*))?$\"},{\"captures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"variable\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"string\"}},\"comment\":\"(Actor)(Arrow)(Actor)(:)(Message)\",\"match\":\"(?i)\\\\s*(\\\\b[\\\"()$&%^/#.?!*=<>'\\\\\\\\\\\\w\\\\s]+\\\\b\\\\)?)\\\\s*(-?-(?:>|x|\\\\))>?[+-]?)\\\\s*([\\\"()$&%^/#.?!*=<>'\\\\\\\\\\\\w\\\\s]+\\\\b\\\\)?)\\\\s*(:)\\\\s*([^;#]*)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(box transparent text)\",\"match\":\"(?i)\\\\s*(box)\\\\s+(transparent)(?:\\\\s+([^;#]*))?\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"comment\":\"(box text)\",\"match\":\"(?i)\\\\s*(box)(?:\\\\s+([^;#]*))?\"}]},{\"begin\":\"^\\\\s*(stateDiagram(?:-v2)?)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"State Diagram\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"}\",\"match\":\"\\\\s+(})\\\\s+\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"--\",\"match\":\"\\\\s+(--)\\\\s+\"},{\"comment\":\"(state)\",\"match\":\"^\\\\s*([\\\\w-]+)$\",\"name\":\"variable\"},{\"captures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(state) : (description)\",\"match\":\"(?i)([\\\\w-]+)\\\\s+(:)\\\\s+(\\\\s*[-\\\\w\\\\s]+\\\\b)\"},{\"begin\":\"(?i)^\\\\s*(state)\\\\s+\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"state\",\"end\":\"$\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"string\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"variable\"}},\"comment\":\"\\\"(description)\\\" as (state)\",\"match\":\"(?i)\\\\s*(\\\"[-\\\\w\\\\s]+\\\\b\\\")\\\\s+(as)\\\\s+([\\\\w-]+)\"},{\"captures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(state name) {\",\"match\":\"(?i)\\\\s*([\\\\w-]+)\\\\s+({)\"},{\"captures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(state name) <<fork|join>>\",\"match\":\"(?i)\\\\s*([\\\\w-]+)\\\\s+(<<(?:fork|join)>>)\"}]},{\"begin\":\"(?i)([\\\\w-]+)\\\\s+(-->)\",\"beginCaptures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(state) -->\",\"end\":\"$\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(state) (:)? (transition text)?\",\"match\":\"(?i)\\\\s+([\\\\w-]+)\\\\s*(:)?\\\\s*([^\\\\n:]+)?\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"string\"}},\"comment\":\"[*] (:)? (transition text)?\",\"match\":\"(?i)(\\\\[\\\\*\\\\])\\\\s*(:)?\\\\s*([^\\\\n:]+)?\"}]},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"variable\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"string\"}},\"comment\":\"[*] --> (state) (:)? (transition text)?\",\"match\":\"(?i)(\\\\[\\\\*\\\\])\\\\s+(-->)\\\\s+([\\\\w-]+)\\\\s*(:)?\\\\s*([^\\\\n:]+)?\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"string\"}},\"comment\":\"note left|right of (state name)\",\"match\":\"(?i)^\\\\s*(note (?:left|right) of)\\\\s+([\\\\w-]+)\\\\s+(:)\\\\s*([^\\\\n:]+)\"},{\"begin\":\"(?i)^\\\\s*(note (?:left|right) of)\\\\s+([\\\\w-]+)(.|\\\\n)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"}},\"comment\":\"note left|right of (state name) (note text) end note\",\"contentName\":\"string\",\"end\":\"(?i)(end note)\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}}}]},{\"begin\":\"^\\\\s*(journey)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"User Journey\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s*(title|section)\\\\s+(\\\\s*[\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"},{\"begin\":\"(?i)\\\\s*([\\\"()$&%\\\\^/.,?!*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\\\\s*(:)\\\\s*(\\\\d+)\\\\s*(:)\",\"beginCaptures\":{\"1\":{\"name\":\"string\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"constant.numeric.decimal.mermaid\"},\"4\":{\"name\":\"keyword.control.mermaid\"}},\"end\":\"$\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"variable\"}},\"comment\":\"(taskName)\",\"match\":\"(?i)\\\\s*,?\\\\s*([^,#\\\\n]+)\"}]}]},{\"begin\":\"^\\\\s*(xychart(?:-beta)?(?:\\\\s+horizontal)?)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"XY Chart\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s*(title)\\\\s+(\\\\s*[\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"},{\"begin\":\"(?i)^\\\\s*(x-axis)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(x-axis)\",\"end\":\"$\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"constant.numeric.decimal.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"constant.numeric.decimal.mermaid\"}},\"comment\":\"(decimal) (-->) (decimal)\",\"match\":\"(?i)\\\\s*([-+]?\\\\d+\\\\.?\\\\d*)\\\\s*(-->)\\\\s*([-+]?\\\\d+\\\\.?\\\\d*)\"},{\"captures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(\\\"text\\\")\",\"match\":\"(?i)\\\\s+(\\\"[($&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*\\\")\"},{\"captures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(text)\",\"match\":\"(?i)\\\\s+([($&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w]*)\"},{\"begin\":\"\\\\s*(\\\\[)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"([)(text)(,)(text)*(])\",\"end\":\"\\\\s*(\\\\])\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"patterns\":[{\"captures\":{\"1\":{\"name\":\"constant.numeric.decimal.mermaid\"}},\"comment\":\"(decimal)\",\"match\":\"(?i)\\\\s*([-+]?\\\\d+\\\\.?\\\\d*)\"},{\"captures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(\\\"text\\\")\",\"match\":\"(?i)\\\\s*(\\\"[($&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*\\\")\"},{\"captures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(text)\",\"match\":\"(?i)\\\\s*([($&%\\\\^/#.?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(,)\",\"match\":\"(?i)\\\\s*(,)\"}]}]},{\"begin\":\"(?i)^\\\\s*(y-axis)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(y-axis)\",\"end\":\"$\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"constant.numeric.decimal.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"constant.numeric.decimal.mermaid\"}},\"comment\":\"(decimal) (-->) (decimal)\",\"match\":\"(?i)\\\\s*([-+]?\\\\d+\\\\.?\\\\d*)\\\\s*(-->)\\\\s*([-+]?\\\\d+\\\\.?\\\\d*)\"},{\"captures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(\\\"text\\\")\",\"match\":\"(?i)\\\\s+(\\\"[($&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*\\\")\"},{\"captures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(text)\",\"match\":\"(?i)\\\\s+([($&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w]*)\"}]},{\"begin\":\"(?i)^\\\\s*(line|bar)\\\\s*(\\\\[)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(line|bar) ([)(decimal)+(])\",\"end\":\"\\\\s*(\\\\])\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"patterns\":[{\"captures\":{\"1\":{\"name\":\"constant.numeric.decimal.mermaid\"}},\"comment\":\"(decimal)\",\"match\":\"(?i)\\\\s*([-+]?\\\\d+\\\\.?\\\\d*)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(,)\",\"match\":\"(?i)\\\\s*(,)\"}]}]}]},\"mermaid-ado-code-block\":{\"begin\":\"(?i)\\\\s*:::\\\\s*mermaid\\\\s*$\",\"contentName\":\"meta.embedded.block.mermaid\",\"end\":\"\\\\s*:::\\\\s*\",\"patterns\":[{\"include\":\"#mermaid\"}]},\"mermaid-code-block\":{\"begin\":\"(?i)(?<=[`~])mermaid(\\\\s+[^`~]*)?$\",\"contentName\":\"meta.embedded.block.mermaid\",\"end\":\"(^|\\\\G)(?=\\\\s*[`~]{3,}\\\\s*$)\",\"patterns\":[{\"include\":\"#mermaid\"}]},\"mermaid-code-block-with-attributes\":{\"begin\":\"(?i)(?<=[`~])\\\\{\\\\s*\\\\.?mermaid(\\\\s+[^`~]*)?$\",\"contentName\":\"meta.embedded.block.mermaid\",\"end\":\"(^|\\\\G)(?=\\\\s*[`~]{3,}\\\\s*$)\",\"patterns\":[{\"include\":\"#mermaid\"}]}},\"scopeName\":\"markdown.mermaid.codeblock\"}"))
|
|
1
|
+
const lang = Object.freeze(JSON.parse("{\"displayName\":\"Mermaid\",\"fileTypes\":[],\"injectionSelector\":\"L:text.html.markdown\",\"name\":\"mermaid\",\"patterns\":[{\"include\":\"#mermaid-code-block\"},{\"include\":\"#mermaid-code-block-with-attributes\"},{\"include\":\"#mermaid-ado-code-block\"}],\"repository\":{\"mermaid\":{\"patterns\":[{\"begin\":\"^\\\\s*(classDiagram)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"Class Diagram\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"entity.name.type.class.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"entity.name.type.class.mermaid\"},\"6\":{\"name\":\"keyword.control.mermaid\"},\"7\":{\"name\":\"string\"}},\"comment\":\"(class name) (\\\"multiplicity relationship\\\")? (relationship) (\\\"multiplicity relationship\\\")? (class name) :? (labelText)?\",\"match\":\"(?i)([\\\\w-]+)\\\\s(\\\"(?:\\\\d+|\\\\*|0..\\\\d+|1..\\\\d+|1..\\\\*)\\\")?\\\\s?(--o|--\\\\*|<--|-->|<\\\\.\\\\.|\\\\.\\\\.>|<\\\\|\\\\.\\\\.|\\\\.\\\\.\\\\|>|<\\\\|--|--\\\\|>|--\\\\*|--|\\\\.\\\\.|\\\\*--|o--)\\\\s(\\\"(?:\\\\d+|\\\\*|0..\\\\d+|1..\\\\d+|1..\\\\*)\\\")?\\\\s?([\\\\w-]+)\\\\s?(:)?\\\\s(.*)$\"},{\"captures\":{\"1\":{\"name\":\"entity.name.type.class.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"entity.name.function.mermaid\"},\"5\":{\"name\":\"punctuation.parenthesis.open.mermaid\"},\"6\":{\"name\":\"storage.type.mermaid\"},\"7\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"8\":{\"name\":\"storage.type.mermaid\"},\"9\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"},\"10\":{\"name\":\"entity.name.variable.parameter.mermaid\"},\"11\":{\"name\":\"punctuation.parenthesis.closed.mermaid\"},\"12\":{\"name\":\"keyword.control.mermaid\"},\"13\":{\"name\":\"storage.type.mermaid\"},\"14\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"15\":{\"name\":\"storage.type.mermaid\"},\"16\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"}},\"comment\":\"(class name) : (visibility)?(function)( (function param/generic param)? )(classifier)? (return/generic return)?$\",\"match\":\"(?i)([\\\\w-]+)\\\\s?(:)\\\\s([+~#-])?([\\\\w-]+)(\\\\()([\\\\w-]+)?(~)?([\\\\w-]+)?(~)?\\\\s?([\\\\w-]+)?(\\\\))([*$]{0,2})\\\\s?([\\\\w-]+)?(~)?([\\\\w-]+)?(~)?$\"},{\"captures\":{\"1\":{\"name\":\"entity.name.type.class.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"storage.type.mermaid\"},\"5\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"6\":{\"name\":\"storage.type.mermaid\"},\"7\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"},\"8\":{\"name\":\"entity.name.variable.field.mermaid\"}},\"comment\":\"(class name) : (visibility)?(datatype/generic data type) (attribute name)$\",\"match\":\"(?i)([\\\\w-]+)\\\\s?(:)\\\\s([+~#-])?([\\\\w-]+)(~)?([\\\\w-]+)?(~)?\\\\s([\\\\w-]+)?$\"},{\"captures\":{\"1\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"2\":{\"name\":\"storage.type.mermaid\"},\"3\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"},\"4\":{\"name\":\"entity.name.type.class.mermaid\"}},\"comment\":\"<<(Annotation)>> (class name)\",\"match\":\"(?i)(<<)([\\\\w-]+)(>>)\\\\s?([\\\\w-]+)?\"},{\"begin\":\"(?i)(class)\\\\s+([\\\\w-]+)(~)?([\\\\w-]+)?(~)?\\\\s?({)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.type.class.mermaid\"},\"3\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"4\":{\"name\":\"storage.type.mermaid\"},\"5\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"},\"6\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"class (class name) ~?(generic type)?~? ({)\",\"end\":\"(})\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"begin\":\"(?i)\\\\s([+~#-])?([\\\\w-]+)(\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"},\"3\":{\"name\":\"punctuation.parenthesis.open.mermaid\"}},\"comment\":\"(visibility)?(function)( (function param/generic param)? )(classifier)? (return/generic return)?$\",\"end\":\"(?i)(\\\\))([*$]{0,2})\\\\s?([\\\\w-]+)?(~)?([\\\\w-]+)?(~)?$\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.parenthesis.closed.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"storage.type.mermaid\"},\"4\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"5\":{\"name\":\"storage.type.mermaid\"},\"6\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"}},\"patterns\":[{\"captures\":{\"1\":{\"name\":\"storage.type.mermaid\"},\"2\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"3\":{\"name\":\"storage.type.mermaid\"},\"4\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"},\"5\":{\"name\":\"entity.name.variable.parameter.mermaid\"}},\"comment\":\"(TBD)\",\"match\":\"(?i)\\\\s*,?\\\\s*([\\\\w-]+)?(~)?([\\\\w-]+)?(~)?\\\\s?([\\\\w-]+)?\"}]},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"storage.type.mermaid\"},\"3\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"4\":{\"name\":\"storage.type.mermaid\"},\"5\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"},\"6\":{\"name\":\"entity.name.variable.field.mermaid\"}},\"comment\":\"(visibility)?(datatype/generic data type) (attribute name)$\",\"match\":\"(?i)\\\\s([+~#-])?([\\\\w-]+)(~)?([\\\\w-]+)?(~)?\\\\s([\\\\w-]+)?$\"},{\"captures\":{\"1\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"2\":{\"name\":\"storage.type.mermaid\"},\"3\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"},\"4\":{\"name\":\"entity.name.type.class.mermaid\"}},\"comment\":\"<<(Annotation)>> (class name)\",\"match\":\"(?i)(<<)([\\\\w-]+)(>>)\\\\s?([\\\\w-]+)?\"}]},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.type.class.mermaid\"},\"3\":{\"name\":\"punctuation.definition.typeparameters.begin.mermaid\"},\"4\":{\"name\":\"storage.type.mermaid\"},\"5\":{\"name\":\"punctuation.definition.typeparameters.end.mermaid\"}},\"comment\":\"class (class name) ~?(generic type)?~?\",\"match\":\"(?i)(class)\\\\s+([\\\\w-]+)(~)?([\\\\w-]+)?(~)?\"}]},{\"begin\":\"^\\\\s*(erDiagram)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"Entity Relationship Diagram\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"comment\":\"(entity)\",\"match\":\"^\\\\s*([\\\\w-]+)$\",\"name\":\"variable\"},{\"begin\":\"(?i)\\\\s+([\\\\w-]+)\\\\s*({)\",\"beginCaptures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(entity) {\",\"end\":\"(})\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"patterns\":[{\"captures\":{\"1\":{\"name\":\"storage.type.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"string\"}},\"comment\":\"(type) (name) (PK|FK)? (\\\"comment\\\")?\",\"match\":\"(?i)\\\\s*([\\\\w-]+)\\\\s+([\\\\w-]+)\\\\s+(PK|FK)?\\\\s*(\\\"[\\\"($&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*\\\")?\\\\s*\"},{\"match\":\"\\\\%%.*\",\"name\":\"comment\"}]},{\"captures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"variable\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"string\"}},\"comment\":\"(entity) (relationship) (entity) : (label)\",\"match\":\"(?i)\\\\s*([\\\\w-]+)\\\\s*((?:\\\\|o|\\\\|\\\\||}o|}\\\\||one or (?:zero|more|many)|zero or (?:one|more|many)|many\\\\((?:0|1)\\\\)|only one|0\\\\+|1\\\\+?)(?:..|--)(?:o\\\\||\\\\|\\\\||o{|\\\\|{|one or (?:zero|more|many)|zero or (?:one|more|many)|many\\\\((?:0|1)\\\\)|only one|0\\\\+|1\\\\+?))\\\\s*([\\\\w-]+)\\\\s*(:)\\\\s*((?:\\\"[\\\\w\\\\s]*\\\")|(?:[\\\\w-]+))\"}]},{\"begin\":\"^\\\\s*(gantt)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"Gantt Diagram\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"}},\"match\":\"(?i)^\\\\s*(dateFormat)\\\\s+([\\\\w\\\\-\\\\.]+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"}},\"match\":\"(?i)^\\\\s*(axisFormat)\\\\s+([\\\\w\\\\%\\\\/\\\\\\\\\\\\-\\\\.]+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)(tickInterval)\\\\s+(([1-9]\\\\d*)(millisecond|second|minute|hour|day|week|month))\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s*(title)\\\\s+(\\\\s*[\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s*(excludes)\\\\s+((?:[\\\\d\\\\-,\\\\s]+|monday|tuesday|wednesday|thursday|friday|saturday|sunday|weekends)+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s+(todayMarker)\\\\s+(.*)$\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s*(section)\\\\s+(\\\\s*[\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"},{\"begin\":\"(?i)^\\\\s(.*)(:)\",\"beginCaptures\":{\"1\":{\"name\":\"string\"},\"2\":{\"name\":\"keyword.control.mermaid\"}},\"end\":\"$\",\"patterns\":[{\"match\":\"(crit|done|active|after)\",\"name\":\"entity.name.function.mermaid\"},{\"match\":\"\\\\%%.*\",\"name\":\"comment\"}]}]},{\"begin\":\"^\\\\s*(gitGraph)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"Git Graph\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"begin\":\"(?i)^\\\\s*(commit)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"commit\",\"end\":\"$\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(id)(:) (\\\"id\\\")\",\"match\":\"(?i)\\\\s*(id)(:)\\\\s?(\\\"[^\\\"\\\\n]*\\\")\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"entity.name.function.mermaid\"}},\"comment\":\"(type)(:) (COMMIT_TYPE)\",\"match\":\"(?i)\\\\s*(type)(:)\\\\s?(NORMAL|REVERSE|HIGHLIGHT)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(tag)(:) (\\\"tag\\\")\",\"match\":\"(?i)\\\\s*(tag)(:)\\\\s?(\\\"[($&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*\\\")\"}]},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"}},\"comment\":\"(checkout) (branch-name)\",\"match\":\"(?i)^\\\\s*(checkout)\\\\s*([^\\\\s\\\"]*)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"constant.numeric.decimal.mermaid\"}},\"comment\":\"(branch) (branch-name) (order)?(:) (number)\",\"match\":\"(?i)^\\\\s*(branch)\\\\s*([^\\\\s\\\"]*)\\\\s*(?:(order)(:)\\\\s?(\\\\d+))?\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"string\"}},\"comment\":\"(merge) (branch-name) (tag: \\\"tag-name\\\")?\",\"match\":\"(?i)^\\\\s*(merge)\\\\s*([^\\\\s\\\"]*)\\\\s*(?:(tag)(:)\\\\s?(\\\"[^\\\"\\\\n]*\\\"))?\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"string\"}},\"comment\":\"(cherry-pick) (id)(:)(\\\"commit-id\\\")\",\"match\":\"(?i)^\\\\s*(cherry-pick)\\\\s+(id)(:)\\\\s*(\\\"[^\\\"\\\\n]*\\\")\"}]},{\"begin\":\"^\\\\s*(graph|flowchart)\\\\s+([\\\\p{Letter} 0-9]+)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"}},\"comment\":\"Graph\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"string\"},\"5\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"\",\"match\":\"(?i)^\\\\s*(subgraph)\\\\s+(\\\\w+)(\\\\[)(\\\"?[\\\\w\\\\s*+%=\\\\\\\\/:\\\\.\\\\-'`,&^#$!?<>]*\\\"?)(\\\\])\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"}},\"match\":\"^\\\\s*(subgraph)\\\\s+([\\\\p{Letter} 0-9<>]+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"}},\"match\":\"^(?i)\\\\s*(direction)\\\\s+(RB|BT|RL|TD|LR)\"},{\"match\":\"\\\\b(end)\\\\b\",\"name\":\"keyword.control.mermaid\"},{\"begin\":\"(?i)(\\\\b(?:(?!--|==)[-\\\\w])+\\\\b\\\\s*)(\\\\(\\\\[|\\\\[\\\\[|\\\\[\\\\(|\\\\[|\\\\(+|>|\\\\{|\\\\(\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(Entity)(Edge/Shape)(Text)(Edge/Shape)\",\"end\":\"(?i)(\\\\]\\\\)|\\\\]\\\\]|\\\\)\\\\]|\\\\]|\\\\)+|\\\\}|\\\\)\\\\))\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"patterns\":[{\"begin\":\"\\\\s*(\\\")\",\"beginCaptures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(\\\"multi-line text\\\")\",\"end\":\"(\\\")\",\"endCaptures\":{\"1\":{\"name\":\"string\"}},\"patterns\":[{\"begin\":\"(?i)([^\\\"]*)\",\"beginCaptures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"capture inner text between quotes\",\"end\":\"(?=\\\")\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"comment\"}},\"match\":\"([^\\\"]*)\"}]}]},{\"captures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(single line text)\",\"match\":\"(?i)\\\\s*([$&%\\\\^/#.,?!;:*+<>_\\\\'\\\\\\\\\\\\w\\\\s]+)\"}]},{\"begin\":\"(?i)\\\\s*((?:-{2,5}|={2,5})[xo>]?\\\\|)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(Graph Link)(\\\"Multiline text\\\")(Graph Link)\",\"end\":\"(?i)(\\\\|)\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"patterns\":[{\"begin\":\"\\\\s*(\\\")\",\"beginCaptures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(\\\"multi-line text\\\")\",\"end\":\"(\\\")\",\"endCaptures\":{\"1\":{\"name\":\"string\"}},\"patterns\":[{\"begin\":\"(?i)([^\\\"]*)\",\"beginCaptures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"capture inner text between quotes\",\"end\":\"(?=\\\")\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"comment\"}},\"match\":\"([^\\\"]*)\"}]}]},{\"captures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(single line text)\",\"match\":\"(?i)\\\\s*([$&%\\\\^/#.,?!;:*+<>_\\\\'\\\\\\\\\\\\w\\\\s]+)\"}]},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"},\"3\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(Graph Link Start Arrow)(Text)(Graph Link End Arrow)\",\"match\":\"(?i)\\\\s*([xo<]?(?:-{2,5}|={2,5}|-\\\\.{1,3}|-\\\\.))((?:(?!--|==)[\\\\w\\\\s*+%=\\\\\\\\/:\\\\.\\\\-'`,\\\"&^#$!?<>\\\\[\\\\]])*)((?:-{2,5}|={2,5}|\\\\.{1,3}-|\\\\.-)[xo>]?)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(Graph Link)\",\"match\":\"(?i)\\\\s*([ox<]?(?:-.{1,3}-|-{1,3}|={1,3})[ox>]?)\"},{\"comment\":\"Entity\",\"match\":\"(\\\\b(?:(?!--|==)[-\\\\w])+\\\\b\\\\s*)\",\"name\":\"variable\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(Class)(Node(s))(ClassName)\",\"match\":\"(?i)\\\\s*(class)\\\\s+(\\\\b[-,\\\\w]+)\\\\s+(\\\\b\\\\w+\\\\b)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(ClassDef)(ClassName)(Styles)\",\"match\":\"(?i)\\\\s*(classDef)\\\\s+(\\\\b\\\\w+\\\\b)\\\\s+(\\\\b[-,:;#\\\\w]+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"variable\"},\"4\":{\"name\":\"string\"}},\"comment\":\"(Click)(Entity)(Link)?(Tooltip)\",\"match\":\"(?i)\\\\s*(click)\\\\s+(\\\\b[-\\\\w]+\\\\b\\\\s*)(\\\\b\\\\w+\\\\b)?\\\\s(\\\"*.*\\\")\"}]},{\"begin\":\"^\\\\s*(pie)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"Pie Chart\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s*(title)\\\\s+(\\\\s*[\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"},{\"begin\":\"(?i)\\\\s(.*)(:)\",\"beginCaptures\":{\"1\":{\"name\":\"string\"},\"2\":{\"name\":\"keyword.control.mermaid\"}},\"end\":\"$\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"}]}]},{\"begin\":\"^\\\\s*(quadrantChart)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"Quadrant Chart\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s*(title)\\\\s*([\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"},{\"begin\":\"(?i)^\\\\s*([xy]-axis)\\\\s+((?:(?!-->)[$&%/#.,?!*+=\\\\'\\\\\\\\\\\\-\\\\w\\\\s])*)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"comment\":\"(x|y-axis) (text) (-->)? (text)?\",\"end\":\"$\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"comment\":\"(-->) (text)\",\"match\":\"(?i)\\\\s*(-->)\\\\s*([$&%/#.,?!*+=\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"}]},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s*(quadrant-[1234])\\\\s*([\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"},{\"captures\":{\"1\":{\"name\":\"string\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"constant.numeric.decimal.mermaid\"},\"5\":{\"name\":\"keyword.control.mermaid\"},\"6\":{\"name\":\"constant.numeric.decimal.mermaid\"},\"7\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(text)(:) ([)(decimal)(,) (decimal)(])\",\"match\":\"(?i)\\\\s*([$&%/#.,?!*+=\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\\\\s*(:)\\\\s*(\\\\[)\\\\s*(\\\\d\\\\.\\\\d+)\\\\s*(,)\\\\s*(\\\\d\\\\.\\\\d+)\\\\s*(\\\\])\"}]},{\"begin\":\"^\\\\s*(requirementDiagram)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"Requirement Diagram\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"begin\":\"(?i)^\\\\s*((?:functional|interface|performance|physical)?requirement|designConstraint)\\\\s*([\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\\\\s*({)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(requirement) (name) ({)\",\"end\":\"(?i)\\\\s*(})\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"patterns\":[{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"}},\"comment\":\"(id:) (variable id)\",\"match\":\"(?i)\\\\s*(id:)\\\\s*([$&%\\\\^/#.,?!;:*+<>_\\\\'\\\\\\\\\\\\w\\\\s]+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"comment\":\"(text:) (text string)\",\"match\":\"(?i)\\\\s*(text:)\\\\s*([$&%\\\\^/#.,?!;:*+<>_\\\\'\\\\\\\\\\\\w\\\\s]+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"}},\"comment\":\"(risk:) (risk option)\",\"match\":\"(?i)\\\\s*(risk:)\\\\s*(low|medium|high)\\\\s*$\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"}},\"comment\":\"(verifyMethod)(:) (method)\",\"match\":\"(?i)\\\\s*(verifymethod:)\\\\s*(analysis|inspection|test|demonstration)\\\\s*$\"}]},{\"begin\":\"(?i)^\\\\s*(element)\\\\s*([\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\\\\s*({)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(element) (name) ({)\",\"end\":\"(?i)\\\\s*(})\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"patterns\":[{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"}},\"comment\":\"(type:) (user type)\",\"match\":\"(?i)\\\\s*(type:)\\\\s*([\\\"$&%\\\\^/#.,?!;:*+<>_\\\\'\\\\\\\\\\\\w\\\\s]+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"}},\"comment\":\"(docref:) (user ref)\",\"match\":\"(?i)\\\\s*(docref:)\\\\s*([$&%\\\\^/#.,?!;:*+<>_\\\\'\\\\\\\\\\\\w\\\\s]+)\"}]},{\"captures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"variable\"}},\"comment\":\"(source) (-) (type) (->) (destination)\",\"match\":\"(?i)^\\\\s*([\\\\w]+)\\\\s*(-)\\\\s*(contains|copies|derives|satisfies|verifies|refines|traces)\\\\s*(->)\\\\s*([\\\\w]+)\\\\s*$\"},{\"captures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"variable\"}},\"comment\":\"(destination) (<-) (type) (-) (source)\",\"match\":\"(?i)^\\\\s*([\\\\w]+)\\\\s*(<-)\\\\s*(contains|copies|derives|satisfies|verifies|refines|traces)\\\\s*(-)\\\\s*([\\\\w]+)\\\\s*$\"}]},{\"begin\":\"^\\\\s*(sequenceDiagram)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"Sequence Diagram\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"(\\\\%%|#).*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(title)(title text)\",\"match\":\"(?i)(title)\\\\s*(:)?\\\\s+(\\\\s*[\\\"()$&%\\\\^/#.,?!:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"string\"}},\"comment\":\"(participant)(Actor)(as)?(Label)?\",\"match\":\"(?i)\\\\s*(participant|actor)\\\\s+((?:(?! as )[\\\"()$&%\\\\^/#.?!*=<>\\\\'\\\\\\\\\\\\w\\\\s])+)\\\\s*(as)?\\\\s([\\\"()$&%\\\\^/#.,?!*=<>\\\\'\\\\\\\\\\\\w\\\\s]+)?\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"}},\"comment\":\"(activate/deactivate)(Actor)\",\"match\":\"(?i)\\\\s*((?:de)?activate)\\\\s+(\\\\b[\\\"()$&%^/#.?!*=<>'\\\\\\\\\\\\w\\\\s]+\\\\b\\\\)?\\\\s*)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"},\"3\":{\"name\":\"variable\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"variable\"},\"6\":{\"name\":\"keyword.control.mermaid\"},\"7\":{\"name\":\"string\"}},\"comment\":\"(Note)(direction)(Actor)(,)?(Actor)?(:)(Message)\",\"match\":\"(?i)\\\\s*(Note)\\\\s+((?:left|right)\\\\sof|over)\\\\s+(\\\\b[\\\"()$&%^/#.?!*=<>'\\\\\\\\\\\\w\\\\s]+\\\\b\\\\)?\\\\s*)(,)?(\\\\b[\\\"()$&%^/#.?!*=<>'\\\\\\\\\\\\w\\\\s]+\\\\b\\\\)?\\\\s*)?(:)(?:\\\\s+([^;#]*))?\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"comment\":\"(loop)(loop text)\",\"match\":\"(?i)\\\\s*(loop)(?:\\\\s+([^;#]*))?\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(end)\",\"match\":\"\\\\s*(end)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"comment\":\"(alt/else/option/par/and/autonumber/critical/opt)(text)\",\"match\":\"(?i)\\\\s*(alt|else|option|par|and|rect|autonumber|critical|opt)(?:\\\\s+([^#;]*))?$\"},{\"captures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"variable\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"string\"}},\"comment\":\"(Actor)(Arrow)(Actor)(:)(Message)\",\"match\":\"(?i)\\\\s*(\\\\b[\\\"()$&%^/#.?!*=<>'\\\\\\\\\\\\w\\\\s]+\\\\b\\\\)?)\\\\s*(-?-(?:>|x|\\\\))>?[+-]?)\\\\s*([\\\"()$&%^/#.?!*=<>'\\\\\\\\\\\\w\\\\s]+\\\\b\\\\)?)\\\\s*(:)\\\\s*([^;#]*)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"entity.name.function.mermaid\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(box transparent text)\",\"match\":\"(?i)\\\\s*(box)\\\\s+(transparent)(?:\\\\s+([^;#]*))?\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"comment\":\"(box text)\",\"match\":\"(?i)\\\\s*(box)(?:\\\\s+([^;#]*))?\"}]},{\"begin\":\"^\\\\s*(stateDiagram(?:-v2)?)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"State Diagram\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"}\",\"match\":\"\\\\s+(})\\\\s+\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"--\",\"match\":\"\\\\s+(--)\\\\s+\"},{\"comment\":\"(state)\",\"match\":\"^\\\\s*([\\\\w-]+)$\",\"name\":\"variable\"},{\"captures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(state) : (description)\",\"match\":\"(?i)([\\\\w-]+)\\\\s+(:)\\\\s+(\\\\s*[-\\\\w\\\\s]+\\\\b)\"},{\"begin\":\"(?i)^\\\\s*(state)\\\\s+\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"state\",\"end\":\"$\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"string\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"variable\"}},\"comment\":\"\\\"(description)\\\" as (state)\",\"match\":\"(?i)\\\\s*(\\\"[-\\\\w\\\\s]+\\\\b\\\")\\\\s+(as)\\\\s+([\\\\w-]+)\"},{\"captures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(state name) {\",\"match\":\"(?i)\\\\s*([\\\\w-]+)\\\\s+({)\"},{\"captures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(state name) <<fork|join>>\",\"match\":\"(?i)\\\\s*([\\\\w-]+)\\\\s+(<<(?:fork|join)>>)\"}]},{\"begin\":\"(?i)([\\\\w-]+)\\\\s+(-->)\",\"beginCaptures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(state) -->\",\"end\":\"$\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"variable\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"string\"}},\"comment\":\"(state) (:)? (transition text)?\",\"match\":\"(?i)\\\\s+([\\\\w-]+)\\\\s*(:)?\\\\s*([^\\\\n:]+)?\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"string\"}},\"comment\":\"[*] (:)? (transition text)?\",\"match\":\"(?i)(\\\\[\\\\*\\\\])\\\\s*(:)?\\\\s*([^\\\\n:]+)?\"}]},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"variable\"},\"4\":{\"name\":\"keyword.control.mermaid\"},\"5\":{\"name\":\"string\"}},\"comment\":\"[*] --> (state) (:)? (transition text)?\",\"match\":\"(?i)(\\\\[\\\\*\\\\])\\\\s+(-->)\\\\s+([\\\\w-]+)\\\\s*(:)?\\\\s*([^\\\\n:]+)?\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control.mermaid\"},\"4\":{\"name\":\"string\"}},\"comment\":\"note left|right of (state name)\",\"match\":\"(?i)^\\\\s*(note (?:left|right) of)\\\\s+([\\\\w-]+)\\\\s+(:)\\\\s*([^\\\\n:]+)\"},{\"begin\":\"(?i)^\\\\s*(note (?:left|right) of)\\\\s+([\\\\w-]+)(.|\\\\n)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"variable\"}},\"comment\":\"note left|right of (state name) (note text) end note\",\"contentName\":\"string\",\"end\":\"(?i)(end note)\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}}}]},{\"begin\":\"^\\\\s*(journey)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"User Journey\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s*(title|section)\\\\s+(\\\\s*[\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"},{\"begin\":\"(?i)\\\\s*([\\\"()$&%\\\\^/.,?!*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\\\\s*(:)\\\\s*(\\\\d+)\\\\s*(:)\",\"beginCaptures\":{\"1\":{\"name\":\"string\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"constant.numeric.decimal.mermaid\"},\"4\":{\"name\":\"keyword.control.mermaid\"}},\"end\":\"$\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"variable\"}},\"comment\":\"(taskName)\",\"match\":\"(?i)\\\\s*,?\\\\s*([^,#\\\\n]+)\"}]}]},{\"begin\":\"^\\\\s*(xychart(?:-beta)?(?:\\\\s+horizontal)?)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"XY Chart\",\"end\":\"(^|\\\\G)(?=\\\\s*[`:~]{3,}\\\\s*$)\",\"patterns\":[{\"match\":\"\\\\%%.*\",\"name\":\"comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"string\"}},\"match\":\"(?i)^\\\\s*(title)\\\\s+(\\\\s*[\\\"()$&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*)\"},{\"begin\":\"(?i)^\\\\s*(x-axis)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(x-axis)\",\"end\":\"$\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"constant.numeric.decimal.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"constant.numeric.decimal.mermaid\"}},\"comment\":\"(decimal) (-->) (decimal)\",\"match\":\"(?i)\\\\s*([-+]?\\\\d+\\\\.?\\\\d*)\\\\s*(-->)\\\\s*([-+]?\\\\d+\\\\.?\\\\d*)\"},{\"captures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(\\\"text\\\")\",\"match\":\"(?i)\\\\s+(\\\"[($&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*\\\")\"},{\"captures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(text)\",\"match\":\"(?i)\\\\s+([($&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w]*)\"},{\"begin\":\"\\\\s*(\\\\[)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"([)(text)(,)(text)*(])\",\"end\":\"\\\\s*(\\\\])\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"patterns\":[{\"captures\":{\"1\":{\"name\":\"constant.numeric.decimal.mermaid\"}},\"comment\":\"(decimal)\",\"match\":\"(?i)\\\\s*([-+]?\\\\d+\\\\.?\\\\d*)\"},{\"captures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(\\\"text\\\")\",\"match\":\"(?i)\\\\s*(\\\"[($&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*\\\")\"},{\"captures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(text)\",\"match\":\"(?i)\\\\s*([($&%\\\\^/#.?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]+)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(,)\",\"match\":\"(?i)\\\\s*(,)\"}]}]},{\"begin\":\"(?i)^\\\\s*(y-axis)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(y-axis)\",\"end\":\"$\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"constant.numeric.decimal.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"},\"3\":{\"name\":\"constant.numeric.decimal.mermaid\"}},\"comment\":\"(decimal) (-->) (decimal)\",\"match\":\"(?i)\\\\s*([-+]?\\\\d+\\\\.?\\\\d*)\\\\s*(-->)\\\\s*([-+]?\\\\d+\\\\.?\\\\d*)\"},{\"captures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(\\\"text\\\")\",\"match\":\"(?i)\\\\s+(\\\"[($&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w\\\\s]*\\\")\"},{\"captures\":{\"1\":{\"name\":\"string\"}},\"comment\":\"(text)\",\"match\":\"(?i)\\\\s+([($&%\\\\^/#.,?!;:*+=<>\\\\'\\\\\\\\\\\\-\\\\w]*)\"}]},{\"begin\":\"(?i)^\\\\s*(line|bar)\\\\s*(\\\\[)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"},\"2\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(line|bar) ([)(decimal)+(])\",\"end\":\"\\\\s*(\\\\])\",\"endCaptures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"patterns\":[{\"captures\":{\"1\":{\"name\":\"constant.numeric.decimal.mermaid\"}},\"comment\":\"(decimal)\",\"match\":\"(?i)\\\\s*([-+]?\\\\d+\\\\.?\\\\d*)\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.mermaid\"}},\"comment\":\"(,)\",\"match\":\"(?i)\\\\s*(,)\"}]}]}]},\"mermaid-ado-code-block\":{\"begin\":\"(?i)\\\\s*:::\\\\s*mermaid\\\\s*$\",\"contentName\":\"meta.embedded.block.mermaid\",\"end\":\"\\\\s*:::\\\\s*\",\"patterns\":[{\"include\":\"#mermaid\"}]},\"mermaid-code-block\":{\"begin\":\"(?i)(?<=[`~])mermaid(\\\\s+[^`~]*)?$\",\"contentName\":\"meta.embedded.block.mermaid\",\"end\":\"(^|\\\\G)(?=\\\\s*[`~]{3,}\\\\s*$)\",\"patterns\":[{\"include\":\"#mermaid\"}]},\"mermaid-code-block-with-attributes\":{\"begin\":\"(?i)(?<=[`~])\\\\{\\\\s*\\\\.?mermaid(\\\\s+[^`~]*)?$\",\"contentName\":\"meta.embedded.block.mermaid\",\"end\":\"(^|\\\\G)(?=\\\\s*[`~]{3,}\\\\s*$)\",\"patterns\":[{\"include\":\"#mermaid\"}]}},\"scopeName\":\"markdown.mermaid.codeblock\",\"aliases\":[\"mmd\"]}"))
|
|
2
2
|
|
|
3
3
|
export default [
|
|
4
4
|
lang
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
const lang = Object.freeze(JSON.parse("{\"displayName\":\"MIPS Assembly\",\"fileTypes\":[\"s\",\"mips\",\"spim\",\"asm\"],\"name\":\"mipsasm\",\"patterns\":[{\"comment\":\"ok actually this are instructions, but one also could call them funtions…\",\"match\":\"\\\\b(mul|abs|div|divu|mulo|mulou|neg|negu|not|rem|remu|rol|ror|li|seq|sge|sgeu|sgt|sgtu|sle|sleu|sne|b|beqz|bge|bgeu|bgt|bgtu|ble|bleu|blt|bltu|bnez|la|ld|ulh|ulhu|ulw|sd|ush|usw|move|mfc1\\\\.d|l\\\\.d|l\\\\.s|s\\\\.d|s\\\\.s)\\\\b\",\"name\":\"support.function.pseudo.mips\"},{\"match\":\"\\\\b(abs\\\\.d|abs\\\\.s|add|add\\\\.d|add\\\\.s|addi|addiu|addu|and|andi|bc1f|bc1t|beq|bgez|bgezal|bgtz|blez|bltz|bltzal|bne|break|c\\\\.eq\\\\.d|c\\\\.eq\\\\.s|c\\\\.le\\\\.d|c\\\\.le\\\\.s|c\\\\.lt\\\\.d|c\\\\.lt\\\\.s|ceil\\\\.w\\\\.d|ceil\\\\.w\\\\.s|clo|clz|cvt\\\\.d\\\\.s|cvt\\\\.d\\\\.w|cvt\\\\.s\\\\.d|cvt\\\\.s\\\\.w|cvt\\\\.w\\\\.d|cvt\\\\.w\\\\.s|div|div\\\\.d|div\\\\.s|divu|eret|floor\\\\.w\\\\.d|floor\\\\.w\\\\.s|j|jal|jalr|jr|lb|lbu|lh|lhu|ll|lui|lw|lwc1|lwl|lwr|madd|maddu|mfc0|mfc1|mfhi|mflo|mov\\\\.d|mov\\\\.s|movf|movf\\\\.d|movf\\\\.s|movn|movn\\\\.d|movn\\\\.s|movt|movt\\\\.d|movt\\\\.s|movz|movz\\\\.d|movz\\\\.s|msub|mtc0|mtc1|mthi|mtlo|mul|mul\\\\.d|mul\\\\.s|mult|multu|neg\\\\.d|neg\\\\.s|nop|nor|or|ori|round\\\\.w\\\\.d|round\\\\.w\\\\.s|sb|sc|sdc1|sh|sll|sllv|slt|slti|sltiu|sltu|sqrt\\\\.d|sqrt\\\\.s|sra|srav|srl|srlv|sub|sub\\\\.d|sub\\\\.s|subu|sw|swc1|swl|swr|syscall|teq|teqi|tge|tgei|tgeiu|tgeu|tlt|tlti|tltiu|tltu|trunc\\\\.w\\\\.d|trunc\\\\.w\\\\.s|xor|xori)\\\\b\",\"name\":\"support.function.mips\"},{\"match\":\"\\\\.(ascii|asciiz|byte|data|double|float|half|kdata|ktext|space|text|word|set\\\\s*(noat|at))\\\\b\",\"name\":\"storage.type.mips\"},{\"match\":\"\\\\.(align|extern||globl)\\\\b\",\"name\":\"storage.modifier.mips\"},{\"captures\":{\"1\":{\"name\":\"entity.name.function.label.mips\"}},\"match\":\"\\\\b([A-Za-z0-9_]+):\",\"name\":\"meta.function.label.mips\"},{\"captures\":{\"1\":{\"name\":\"punctuation.definition.variable.mips\"}},\"match\":\"(\\\\$)(0|[2-9]|1\\\\d|2[0-5]|2[89]|3[0-1])\\\\b\",\"name\":\"variable.other.register.usable.by-number.mips\"},{\"captures\":{\"1\":{\"name\":\"punctuation.definition.variable.mips\"}},\"match\":\"(\\\\$)(zero|v[01]|a[0-3]|t\\\\d|s[0-7]|gp|sp|fp|ra)\\\\b\",\"name\":\"variable.other.register.usable.by-name.mips\"},{\"captures\":{\"1\":{\"name\":\"punctuation.definition.variable.mips\"}},\"match\":\"(\\\\$)(at|k[01]|1|2[67])\\\\b\",\"name\":\"variable.other.register.reserved.mips\"},{\"captures\":{\"1\":{\"name\":\"punctuation.definition.variable.mips\"}},\"match\":\"(\\\\$)f(\\\\d|1\\\\d|2\\\\d|3[0-1])\\\\b\",\"name\":\"variable.other.register.usable.floating-point.mips\"},{\"match\":\"\\\\b\\\\d+\\\\.\\\\d+\\\\b\",\"name\":\"constant.numeric.float.mips\"},{\"match\":\"\\\\b(\\\\d+|0(x|X)[a-fA-F0-9]+)\\\\b\",\"name\":\"constant.numeric.integer.mips\"},{\"begin\":\"\\\"\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.mips\"}},\"end\":\"\\\"\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.mips\"}},\"name\":\"string.quoted.double.mips\",\"patterns\":[{\"match\":\"\\\\\\\\[rnt\\\\\\\\\\\"]\",\"name\":\"constant.character.escape.mips\"}]},{\"begin\":\"(^[ \\\\t]+)?(?=#)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.whitespace.comment.leading.mips\"}},\"end\":\"(?!\\\\G)\",\"patterns\":[{\"begin\":\"#\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.comment.mips\"}},\"end\":\"\\\\n\",\"name\":\"comment.line.number-sign.mips\"}]}],\"scopeName\":\"source.mips\",\"aliases\":[\"mips\"]}"))
|
|
2
|
+
|
|
3
|
+
export default [
|
|
4
|
+
lang
|
|
5
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg
|
package/dist/langs/sass.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const lang = Object.freeze(JSON.parse("{\"displayName\":\"Sass\",\"fileTypes\":[\"sass\"],\"foldingStartMarker\":\"/\\\\*|^#|^\\\\*|^\\\\b|*#?region|^\\\\.\",\"foldingStopMarker\":\"\\\\*/|*#?endregion|^\\\\s*$\",\"name\":\"sass\",\"patterns\":[{\"begin\":\"^(\\\\s*)(/\\\\*)\",\"end\":\"(\\\\*/)|^(?!\\\\s\\\\1)\",\"name\":\"comment.block.sass\",\"patterns\":[{\"include\":\"#comment-tag\"},{\"include\":\"#comment-param\"}]},{\"match\":\"^[\\\\t ]*/?//[\\\\t ]*[SRI][\\\\t ]*$\",\"name\":\"keyword.other.sass.formatter.action\"},{\"begin\":\"^[\\\\t ]*//[\\\\t ]*(import)[\\\\t ]*(css-variables)[\\\\t ]*(from)\",\"captures\":{\"1\":{\"name\":\"keyword.control\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control\"}},\"end\":\"$\\\\n?\",\"name\":\"comment.import.css.variables\",\"patterns\":[{\"include\":\"#import-quotes\"}]},{\"include\":\"#double-slash\"},{\"include\":\"#double-quoted\"},{\"include\":\"#single-quoted\"},{\"include\":\"#interpolation\"},{\"include\":\"#curly-brackets\"},{\"include\":\"#placeholder-selector\"},{\"begin\":\"\\\\$[a-zA-Z0-9_-]+(?=:)\",\"captures\":{\"0\":{\"name\":\"variable.other.name\"}},\"end\":\"$\\\\n?|(?=\\\\)\\\\s\\\\)|\\\\)\\\\n)\",\"name\":\"sass.script.maps\",\"patterns\":[{\"include\":\"#double-slash\"},{\"include\":\"#double-quoted\"},{\"include\":\"#single-quoted\"},{\"include\":\"#interpolation\"},{\"include\":\"#variable\"},{\"include\":\"#rgb-value\"},{\"include\":\"#numeric\"},{\"include\":\"#unit\"},{\"include\":\"#flag\"},{\"include\":\"#comma\"},{\"include\":\"#function\"},{\"include\":\"#function-content\"},{\"include\":\"#operator\"},{\"include\":\"#reserved-words\"},{\"include\":\"#parent-selector\"},{\"include\":\"#property-value\"},{\"include\":\"#semicolon\"},{\"include\":\"#dotdotdot\"}]},{\"include\":\"#variable-root\"},{\"include\":\"#numeric\"},{\"include\":\"#unit\"},{\"include\":\"#flag\"},{\"include\":\"#comma\"},{\"include\":\"#semicolon\"},{\"include\":\"#dotdotdot\"},{\"begin\":\"@include|\\\\+(?!\\\\W|\\\\d)\",\"captures\":{\"0\":{\"name\":\"keyword.control.at-rule.css.sass\"}},\"end\":\"(?=\\\\n|\\\\()\",\"name\":\"support.function.name.sass.library\"},{\"begin\":\"^(@use)\",\"captures\":{\"0\":{\"name\":\"keyword.control.at-rule.css.sass.use\"}},\"end\":\"(?=\\\\n)\",\"name\":\"sass.use\",\"patterns\":[{\"match\":\"as|with\",\"name\":\"support.type.css.sass\"},{\"include\":\"#numeric\"},{\"include\":\"#unit\"},{\"include\":\"#variable-root\"},{\"include\":\"#rgb-value\"},{\"include\":\"#comma\"},{\"include\":\"#parenthesis-open\"},{\"include\":\"#parenthesis-close\"},{\"include\":\"#colon\"},{\"include\":\"#import-quotes\"}]},{\"begin\":\"^@import(.*?)( as.*)?$\",\"captures\":{\"1\":{\"name\":\"constant.character.css.sass\"},\"2\":{\"name\":\"invalid\"}},\"end\":\"(?=\\\\n)\",\"name\":\"keyword.control.at-rule.use\"},{\"begin\":\"@mixin|^[\\\\t ]*=|@function\",\"captures\":{\"0\":{\"name\":\"keyword.control.at-rule.css.sass\"}},\"end\":\"$\\\\n?|(?=\\\\()\",\"name\":\"support.function.name.sass\",\"patterns\":[{\"match\":\"[\\\\w-]+\",\"name\":\"entity.name.function\"}]},{\"begin\":\"@\",\"end\":\"$\\\\n?|\\\\s(?!(all|braille|embossed|handheld|print|projection|screen|speech|tty|tv|if|only|not)(\\\\s|,))\",\"name\":\"keyword.control.at-rule.css.sass\"},{\"begin\":\"(?<!-|\\\\()\\\\b(a|abbr|acronym|address|applet|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|datalist|dd|del|details|dfn|dialog|div|dl|dt|em|embed|eventsource|fieldset|figure|figcaption|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|label|legend|li|link|map|mark|menu|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|picture|pre|progress|q|samp|script|section|select|small|source|span|strike|strong|style|sub|summary|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video|main|svg|rect|ruby|center|circle|ellipse|line|polyline|polygon|path|text|u|slot)\\\\b(?!-|\\\\)|:\\\\s)|&\",\"end\":\"$\\\\n?|(?=\\\\s|,|\\\\(|\\\\)|\\\\.|\\\\#|\\\\[|>|-|_)\",\"name\":\"entity.name.tag.css.sass.symbol\",\"patterns\":[{\"include\":\"#interpolation\"},{\"include\":\"#pseudo-class\"}]},{\"begin\":\"#\",\"end\":\"$\\\\n?|(?=\\\\s|,|\\\\(|\\\\)|\\\\.|\\\\[|>)\",\"name\":\"entity.other.attribute-name.id.css.sass\",\"patterns\":[{\"include\":\"#interpolation\"},{\"include\":\"#pseudo-class\"}]},{\"begin\":\"\\\\.|(?<=&)(-|_)\",\"end\":\"$\\\\n?|(?=\\\\s|,|\\\\(|\\\\)|\\\\[|>)\",\"name\":\"entity.other.attribute-name.class.css.sass\",\"patterns\":[{\"include\":\"#interpolation\"},{\"include\":\"#pseudo-class\"}]},{\"begin\":\"\\\\[\",\"end\":\"\\\\]\",\"name\":\"entity.other.attribute-selector.sass\",\"patterns\":[{\"include\":\"#double-quoted\"},{\"include\":\"#single-quoted\"},{\"match\":\"\\\\^|\\\\$|\\\\*|~\",\"name\":\"keyword.other.regex.sass\"}]},{\"match\":\"^((?<=\\\\]|\\\\)|not\\\\(|\\\\*|>|>\\\\s)|\\n*):[a-z:-]+|(::|:-)[a-z:-]+\",\"name\":\"entity.other.attribute-name.pseudo-class.css.sass\"},{\"include\":\"#module\"},{\"match\":\"[\\\\w-]*\\\\(\",\"name\":\"entity.name.function\"},{\"match\":\"\\\\)\",\"name\":\"entity.name.function.close\"},{\"begin\":\":\",\"end\":\"$\\\\n?|(?=\\\\s\\\\(|and\\\\(|\\\\),)\",\"name\":\"meta.property-list.css.sass.prop\",\"patterns\":[{\"match\":\"(?<=:)[a-z-]+\\\\s\",\"name\":\"support.type.property-name.css.sass.prop.name\"},{\"include\":\"#double-slash\"},{\"include\":\"#double-quoted\"},{\"include\":\"#single-quoted\"},{\"include\":\"#interpolation\"},{\"include\":\"#curly-brackets\"},{\"include\":\"#variable\"},{\"include\":\"#rgb-value\"},{\"include\":\"#numeric\"},{\"include\":\"#unit\"},{\"include\":\"#module\"},{\"match\":\"--.+?(?=\\\\))\",\"name\":\"variable.css\"},{\"match\":\"[\\\\w-]*\\\\(\",\"name\":\"entity.name.function\"},{\"match\":\"\\\\)\",\"name\":\"entity.name.function.close\"},{\"include\":\"#flag\"},{\"include\":\"#comma\"},{\"include\":\"#semicolon\"},{\"include\":\"#function\"},{\"include\":\"#function-content\"},{\"include\":\"#operator\"},{\"include\":\"#parent-selector\"},{\"include\":\"#property-value\"}]},{\"include\":\"#rgb-value\"},{\"include\":\"#function\"},{\"include\":\"#function-content\"},{\"begin\":\"(?<=})(?!\\\\n|\\\\(|\\\\)|[a-zA-Z0-9_-]+:)\",\"end\":\"\\\\s|(?=,|\\\\.|\\\\[|\\\\)|\\\\n)\",\"name\":\"entity.name.tag.css.sass\",\"patterns\":[{\"include\":\"#interpolation\"},{\"include\":\"#pseudo-class\"}]},{\"include\":\"#operator\"},{\"match\":\"[a-z-]+((?=:|#{))\",\"name\":\"support.type.property-name.css.sass.prop.name\"},{\"include\":\"#reserved-words\"},{\"include\":\"#property-value\"}],\"repository\":{\"colon\":{\"match\":\":\",\"name\":\"meta.property-list.css.sass.colon\"},\"comma\":{\"match\":\"\\\\band\\\\b|\\\\bor\\\\b|,\",\"name\":\"comment.punctuation.comma.sass\"},\"comment-param\":{\"match\":\"\\\\@(\\\\w+)\",\"name\":\"storage.type.class.jsdoc\"},\"comment-tag\":{\"begin\":\"(?<={{)\",\"end\":\"(?=}})\",\"name\":\"comment.tag.sass\"},\"curly-brackets\":{\"match\":\"{|}\",\"name\":\"invalid\"},\"dotdotdot\":{\"match\":\"\\\\.\\\\.\\\\.\",\"name\":\"variable.other\"},\"double-quoted\":{\"begin\":\"\\\"\",\"end\":\"\\\"\",\"name\":\"string.quoted.double.css.sass\",\"patterns\":[{\"include\":\"#quoted-interpolation\"}]},\"double-slash\":{\"begin\":\"//\",\"end\":\"$\\\\n?\",\"name\":\"comment.line.sass\",\"patterns\":[{\"include\":\"#comment-tag\"}]},\"flag\":{\"match\":\"!(important|default|optional|global)\",\"name\":\"keyword.other.important.css.sass\"},\"function\":{\"match\":\"(?<=[\\\\s|(|,|:])(?!url|format|attr)[a-zA-Z0-9_-][\\\\w-]*(?=\\\\()\",\"name\":\"support.function.name.sass\"},\"function-content\":{\"begin\":\"(?<=url\\\\(|format\\\\(|attr\\\\()\",\"end\":\".(?=\\\\))\",\"name\":\"string.quoted.double.css.sass\"},\"import-quotes\":{\"match\":\"[\\\"']?\\\\.{0,2}[\\\\w/]+[\\\"']?\",\"name\":\"constant.character.css.sass\"},\"interpolation\":{\"begin\":\"#{\",\"end\":\"}\",\"name\":\"support.function.interpolation.sass\",\"patterns\":[{\"include\":\"#variable\"},{\"include\":\"#numeric\"},{\"include\":\"#operator\"},{\"include\":\"#unit\"},{\"include\":\"#comma\"},{\"include\":\"#double-quoted\"},{\"include\":\"#single-quoted\"}]},\"module\":{\"captures\":{\"1\":{\"name\":\"constant.character.module.name\"},\"2\":{\"name\":\"constant.numeric.module.dot\"}},\"match\":\"([\\\\w-]+?)(\\\\.)\",\"name\":\"constant.character.module\"},\"numeric\":{\"match\":\"(-|\\\\.)?\\\\d+(\\\\.\\\\d+)?\",\"name\":\"constant.numeric.css.sass\"},\"operator\":{\"match\":\"\\\\+|\\\\s-\\\\s|\\\\s-(?=\\\\$)|(?<=\\\\()-(?=\\\\$)|\\\\s-(?=\\\\()|\\\\*|/|%|=|!|<|>|~\",\"name\":\"keyword.operator.sass\"},\"parent-selector\":{\"match\":\"&\",\"name\":\"entity.name.tag.css.sass\"},\"parenthesis-close\":{\"match\":\"\\\\)\",\"name\":\"entity.name.function.parenthesis.close\"},\"parenthesis-open\":{\"match\":\"\\\\(\",\"name\":\"entity.name.function.parenthesis.open\"},\"placeholder-selector\":{\"begin\":\"(?<!\\\\d)%(?!\\\\d)\",\"end\":\"$\\\\n?|\\\\s\",\"name\":\"entity.other.inherited-class.placeholder-selector.css.sass\"},\"property-value\":{\"match\":\"[a-zA-Z0-9_-]+\",\"name\":\"meta.property-value.css.sass support.constant.property-value.css.sass\"},\"pseudo-class\":{\"match\":\":[a-z:-]+\",\"name\":\"entity.other.attribute-name.pseudo-class.css.sass\"},\"quoted-interpolation\":{\"begin\":\"#{\",\"end\":\"}\",\"name\":\"support.function.interpolation.sass\",\"patterns\":[{\"include\":\"#variable\"},{\"include\":\"#numeric\"},{\"include\":\"#operator\"},{\"include\":\"#unit\"},{\"include\":\"#comma\"}]},\"reserved-words\":{\"match\":\"\\\\b(false|from|in|not|null|through|to|true)\\\\b\",\"name\":\"support.type.property-name.css.sass\"},\"rgb-value\":{\"match\":\"(#)([0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})\\\\b\",\"name\":\"constant.language.color.rgb-value.css.sass\"},\"semicolon\":{\"match\":\";\",\"name\":\"invalid\"},\"single-quoted\":{\"begin\":\"'\",\"end\":\"'\",\"name\":\"string.quoted.single.css.sass\",\"patterns\":[{\"include\":\"#quoted-interpolation\"}]},\"unit\":{\"match\":\"(?<=[\\\\d]|})(ch|cm|deg|dpcm|dpi|dppx|em|ex|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vw|fr|%)\",\"name\":\"keyword.control.unit.css.sass\"},\"variable\":{\"match\":\"\\\\$[a-zA-Z0-9_-]+\",\"name\":\"variable.other.value\"},\"variable-root\":{\"match\":\"\\\\$[a-zA-Z0-9_-]+\",\"name\":\"variable.other.root\"}},\"scopeName\":\"source.sass\"}"))
|
|
1
|
+
const lang = Object.freeze(JSON.parse("{\"displayName\":\"Sass\",\"fileTypes\":[\"sass\"],\"foldingStartMarker\":\"/\\\\*|^#|^\\\\*|^\\\\b|\\\\*#?region|^\\\\.\",\"foldingStopMarker\":\"\\\\*/|\\\\*#?endregion|^\\\\s*$\",\"name\":\"sass\",\"patterns\":[{\"begin\":\"^(\\\\s*)(/\\\\*)\",\"end\":\"(\\\\*/)|^(?!\\\\s\\\\1)\",\"name\":\"comment.block.sass\",\"patterns\":[{\"include\":\"#comment-tag\"},{\"include\":\"#comment-param\"}]},{\"match\":\"^[\\\\t ]*/?//[\\\\t ]*[SRI][\\\\t ]*$\",\"name\":\"keyword.other.sass.formatter.action\"},{\"begin\":\"^[\\\\t ]*//[\\\\t ]*(import)[\\\\t ]*(css-variables)[\\\\t ]*(from)\",\"captures\":{\"1\":{\"name\":\"keyword.control\"},\"2\":{\"name\":\"variable\"},\"3\":{\"name\":\"keyword.control\"}},\"end\":\"$\\\\n?\",\"name\":\"comment.import.css.variables\",\"patterns\":[{\"include\":\"#import-quotes\"}]},{\"include\":\"#double-slash\"},{\"include\":\"#double-quoted\"},{\"include\":\"#single-quoted\"},{\"include\":\"#interpolation\"},{\"include\":\"#curly-brackets\"},{\"include\":\"#placeholder-selector\"},{\"begin\":\"\\\\$[a-zA-Z0-9_-]+(?=:)\",\"captures\":{\"0\":{\"name\":\"variable.other.name\"}},\"end\":\"$\\\\n?|(?=\\\\)\\\\s\\\\)|\\\\)\\\\n)\",\"name\":\"sass.script.maps\",\"patterns\":[{\"include\":\"#double-slash\"},{\"include\":\"#double-quoted\"},{\"include\":\"#single-quoted\"},{\"include\":\"#interpolation\"},{\"include\":\"#variable\"},{\"include\":\"#rgb-value\"},{\"include\":\"#numeric\"},{\"include\":\"#unit\"},{\"include\":\"#flag\"},{\"include\":\"#comma\"},{\"include\":\"#function\"},{\"include\":\"#function-content\"},{\"include\":\"#operator\"},{\"include\":\"#reserved-words\"},{\"include\":\"#parent-selector\"},{\"include\":\"#property-value\"},{\"include\":\"#semicolon\"},{\"include\":\"#dotdotdot\"}]},{\"include\":\"#variable-root\"},{\"include\":\"#numeric\"},{\"include\":\"#unit\"},{\"include\":\"#flag\"},{\"include\":\"#comma\"},{\"include\":\"#semicolon\"},{\"include\":\"#dotdotdot\"},{\"begin\":\"@include|\\\\+(?!\\\\W|\\\\d)\",\"captures\":{\"0\":{\"name\":\"keyword.control.at-rule.css.sass\"}},\"end\":\"(?=\\\\n|\\\\()\",\"name\":\"support.function.name.sass.library\"},{\"begin\":\"^(@use)\",\"captures\":{\"0\":{\"name\":\"keyword.control.at-rule.css.sass.use\"}},\"end\":\"(?=\\\\n)\",\"name\":\"sass.use\",\"patterns\":[{\"match\":\"as|with\",\"name\":\"support.type.css.sass\"},{\"include\":\"#numeric\"},{\"include\":\"#unit\"},{\"include\":\"#variable-root\"},{\"include\":\"#rgb-value\"},{\"include\":\"#comma\"},{\"include\":\"#parenthesis-open\"},{\"include\":\"#parenthesis-close\"},{\"include\":\"#colon\"},{\"include\":\"#import-quotes\"}]},{\"begin\":\"^@import(.*?)( as.*)?$\",\"captures\":{\"1\":{\"name\":\"constant.character.css.sass\"},\"2\":{\"name\":\"invalid\"}},\"end\":\"(?=\\\\n)\",\"name\":\"keyword.control.at-rule.use\"},{\"begin\":\"@mixin|^[\\\\t ]*=|@function\",\"captures\":{\"0\":{\"name\":\"keyword.control.at-rule.css.sass\"}},\"end\":\"$\\\\n?|(?=\\\\()\",\"name\":\"support.function.name.sass\",\"patterns\":[{\"match\":\"[\\\\w-]+\",\"name\":\"entity.name.function\"}]},{\"begin\":\"@\",\"end\":\"$\\\\n?|\\\\s(?!(all|braille|embossed|handheld|print|projection|screen|speech|tty|tv|if|only|not)(\\\\s|,))\",\"name\":\"keyword.control.at-rule.css.sass\"},{\"begin\":\"(?<!-|\\\\()\\\\b(a|abbr|acronym|address|applet|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|datalist|dd|del|details|dfn|dialog|div|dl|dt|em|embed|eventsource|fieldset|figure|figcaption|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|label|legend|li|link|map|mark|menu|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|picture|pre|progress|q|samp|script|section|select|small|source|span|strike|strong|style|sub|summary|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video|main|svg|rect|ruby|center|circle|ellipse|line|polyline|polygon|path|text|u|slot)\\\\b(?!-|\\\\)|:\\\\s)|&\",\"end\":\"$\\\\n?|(?=\\\\s|,|\\\\(|\\\\)|\\\\.|\\\\#|\\\\[|>|-|_)\",\"name\":\"entity.name.tag.css.sass.symbol\",\"patterns\":[{\"include\":\"#interpolation\"},{\"include\":\"#pseudo-class\"}]},{\"begin\":\"#\",\"end\":\"$\\\\n?|(?=\\\\s|,|\\\\(|\\\\)|\\\\.|\\\\[|>)\",\"name\":\"entity.other.attribute-name.id.css.sass\",\"patterns\":[{\"include\":\"#interpolation\"},{\"include\":\"#pseudo-class\"}]},{\"begin\":\"\\\\.|(?<=&)(-|_)\",\"end\":\"$\\\\n?|(?=\\\\s|,|\\\\(|\\\\)|\\\\[|>)\",\"name\":\"entity.other.attribute-name.class.css.sass\",\"patterns\":[{\"include\":\"#interpolation\"},{\"include\":\"#pseudo-class\"}]},{\"begin\":\"\\\\[\",\"end\":\"\\\\]\",\"name\":\"entity.other.attribute-selector.sass\",\"patterns\":[{\"include\":\"#double-quoted\"},{\"include\":\"#single-quoted\"},{\"match\":\"\\\\^|\\\\$|\\\\*|~\",\"name\":\"keyword.other.regex.sass\"}]},{\"match\":\"^((?<=\\\\]|\\\\)|not\\\\(|\\\\*|>|>\\\\s)|\\n*):[a-z:-]+|(::|:-)[a-z:-]+\",\"name\":\"entity.other.attribute-name.pseudo-class.css.sass\"},{\"include\":\"#module\"},{\"match\":\"[\\\\w-]*\\\\(\",\"name\":\"entity.name.function\"},{\"match\":\"\\\\)\",\"name\":\"entity.name.function.close\"},{\"begin\":\":\",\"end\":\"$\\\\n?|(?=\\\\s\\\\(|and\\\\(|\\\\),)\",\"name\":\"meta.property-list.css.sass.prop\",\"patterns\":[{\"match\":\"(?<=:)[a-z-]+\\\\s\",\"name\":\"support.type.property-name.css.sass.prop.name\"},{\"include\":\"#double-slash\"},{\"include\":\"#double-quoted\"},{\"include\":\"#single-quoted\"},{\"include\":\"#interpolation\"},{\"include\":\"#curly-brackets\"},{\"include\":\"#variable\"},{\"include\":\"#rgb-value\"},{\"include\":\"#numeric\"},{\"include\":\"#unit\"},{\"include\":\"#module\"},{\"match\":\"--.+?(?=\\\\))\",\"name\":\"variable.css\"},{\"match\":\"[\\\\w-]*\\\\(\",\"name\":\"entity.name.function\"},{\"match\":\"\\\\)\",\"name\":\"entity.name.function.close\"},{\"include\":\"#flag\"},{\"include\":\"#comma\"},{\"include\":\"#semicolon\"},{\"include\":\"#function\"},{\"include\":\"#function-content\"},{\"include\":\"#operator\"},{\"include\":\"#parent-selector\"},{\"include\":\"#property-value\"}]},{\"include\":\"#rgb-value\"},{\"include\":\"#function\"},{\"include\":\"#function-content\"},{\"begin\":\"(?<=})(?!\\\\n|\\\\(|\\\\)|[a-zA-Z0-9_-]+:)\",\"end\":\"\\\\s|(?=,|\\\\.|\\\\[|\\\\)|\\\\n)\",\"name\":\"entity.name.tag.css.sass\",\"patterns\":[{\"include\":\"#interpolation\"},{\"include\":\"#pseudo-class\"}]},{\"include\":\"#operator\"},{\"match\":\"[a-z-]+((?=:|#{))\",\"name\":\"support.type.property-name.css.sass.prop.name\"},{\"include\":\"#reserved-words\"},{\"include\":\"#property-value\"}],\"repository\":{\"colon\":{\"match\":\":\",\"name\":\"meta.property-list.css.sass.colon\"},\"comma\":{\"match\":\"\\\\band\\\\b|\\\\bor\\\\b|,\",\"name\":\"comment.punctuation.comma.sass\"},\"comment-param\":{\"match\":\"\\\\@(\\\\w+)\",\"name\":\"storage.type.class.jsdoc\"},\"comment-tag\":{\"begin\":\"(?<={{)\",\"end\":\"(?=}})\",\"name\":\"comment.tag.sass\"},\"curly-brackets\":{\"match\":\"{|}\",\"name\":\"invalid\"},\"dotdotdot\":{\"match\":\"\\\\.\\\\.\\\\.\",\"name\":\"variable.other\"},\"double-quoted\":{\"begin\":\"\\\"\",\"end\":\"\\\"\",\"name\":\"string.quoted.double.css.sass\",\"patterns\":[{\"include\":\"#quoted-interpolation\"}]},\"double-slash\":{\"begin\":\"//\",\"end\":\"$\\\\n?\",\"name\":\"comment.line.sass\",\"patterns\":[{\"include\":\"#comment-tag\"}]},\"flag\":{\"match\":\"!(important|default|optional|global)\",\"name\":\"keyword.other.important.css.sass\"},\"function\":{\"match\":\"(?<=[\\\\s|(|,|:])(?!url|format|attr)[a-zA-Z0-9_-][\\\\w-]*(?=\\\\()\",\"name\":\"support.function.name.sass\"},\"function-content\":{\"begin\":\"(?<=url\\\\(|format\\\\(|attr\\\\()\",\"end\":\".(?=\\\\))\",\"name\":\"string.quoted.double.css.sass\"},\"import-quotes\":{\"match\":\"[\\\"']?\\\\.{0,2}[\\\\w/]+[\\\"']?\",\"name\":\"constant.character.css.sass\"},\"interpolation\":{\"begin\":\"#{\",\"end\":\"}\",\"name\":\"support.function.interpolation.sass\",\"patterns\":[{\"include\":\"#variable\"},{\"include\":\"#numeric\"},{\"include\":\"#operator\"},{\"include\":\"#unit\"},{\"include\":\"#comma\"},{\"include\":\"#double-quoted\"},{\"include\":\"#single-quoted\"}]},\"module\":{\"captures\":{\"1\":{\"name\":\"constant.character.module.name\"},\"2\":{\"name\":\"constant.numeric.module.dot\"}},\"match\":\"([\\\\w-]+?)(\\\\.)\",\"name\":\"constant.character.module\"},\"numeric\":{\"match\":\"(-|\\\\.)?\\\\d+(\\\\.\\\\d+)?\",\"name\":\"constant.numeric.css.sass\"},\"operator\":{\"match\":\"\\\\+|\\\\s-\\\\s|\\\\s-(?=\\\\$)|(?<=\\\\()-(?=\\\\$)|\\\\s-(?=\\\\()|\\\\*|/|%|=|!|<|>|~\",\"name\":\"keyword.operator.sass\"},\"parent-selector\":{\"match\":\"&\",\"name\":\"entity.name.tag.css.sass\"},\"parenthesis-close\":{\"match\":\"\\\\)\",\"name\":\"entity.name.function.parenthesis.close\"},\"parenthesis-open\":{\"match\":\"\\\\(\",\"name\":\"entity.name.function.parenthesis.open\"},\"placeholder-selector\":{\"begin\":\"(?<!\\\\d)%(?!\\\\d)\",\"end\":\"$\\\\n?|\\\\s\",\"name\":\"entity.other.inherited-class.placeholder-selector.css.sass\"},\"property-value\":{\"match\":\"[a-zA-Z0-9_-]+\",\"name\":\"meta.property-value.css.sass support.constant.property-value.css.sass\"},\"pseudo-class\":{\"match\":\":[a-z:-]+\",\"name\":\"entity.other.attribute-name.pseudo-class.css.sass\"},\"quoted-interpolation\":{\"begin\":\"#{\",\"end\":\"}\",\"name\":\"support.function.interpolation.sass\",\"patterns\":[{\"include\":\"#variable\"},{\"include\":\"#numeric\"},{\"include\":\"#operator\"},{\"include\":\"#unit\"},{\"include\":\"#comma\"}]},\"reserved-words\":{\"match\":\"\\\\b(false|from|in|not|null|through|to|true)\\\\b\",\"name\":\"support.type.property-name.css.sass\"},\"rgb-value\":{\"match\":\"(#)([0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})\\\\b\",\"name\":\"constant.language.color.rgb-value.css.sass\"},\"semicolon\":{\"match\":\";\",\"name\":\"invalid\"},\"single-quoted\":{\"begin\":\"'\",\"end\":\"'\",\"name\":\"string.quoted.single.css.sass\",\"patterns\":[{\"include\":\"#quoted-interpolation\"}]},\"unit\":{\"match\":\"(?<=[\\\\d]|})(ch|cm|deg|dpcm|dpi|dppx|em|ex|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vw|fr|%)\",\"name\":\"keyword.control.unit.css.sass\"},\"variable\":{\"match\":\"\\\\$[a-zA-Z0-9_-]+\",\"name\":\"variable.other.value\"},\"variable-root\":{\"match\":\"\\\\$[a-zA-Z0-9_-]+\",\"name\":\"variable.other.root\"}},\"scopeName\":\"source.sass\"}"))
|
|
2
2
|
|
|
3
3
|
export default [
|
|
4
4
|
lang
|
package/dist/langs.d.mts
CHANGED
|
@@ -7,7 +7,7 @@ declare const bundledLanguagesBase: {
|
|
|
7
7
|
declare const bundledLanguagesAlias: {
|
|
8
8
|
[k: string]: DynamicImportLanguageRegistration;
|
|
9
9
|
};
|
|
10
|
-
type BundledLanguage = 'abap' | 'actionscript-3' | 'ada' | 'adoc' | 'angular-html' | 'angular-ts' | 'apache' | 'apex' | 'apl' | 'applescript' | 'ara' | 'asciidoc' | 'asm' | 'astro' | 'awk' | 'ballerina' | 'bash' | 'bat' | 'batch' | 'be' | 'beancount' | 'berry' | 'bibtex' | 'bicep' | 'blade' | 'c' | 'c#' | 'c++' | 'cadence' | 'cdc' | 'clarity' | 'clj' | 'clojure' | 'closure-templates' | 'cmake' | 'cmd' | 'cobol' | 'codeowners' | 'codeql' | 'coffee' | 'coffeescript' | 'common-lisp' | 'console' | 'coq' | 'cpp' | 'cql' | 'crystal' | 'cs' | 'csharp' | 'css' | 'csv' | 'cue' | 'cypher' | 'd' | 'dart' | 'dax' | 'desktop' | 'diff' | 'docker' | 'dockerfile' | 'dotenv' | 'dream-maker' | 'edge' | 'elisp' | 'elixir' | 'elm' | 'emacs-lisp' | 'erb' | 'erl' | 'erlang' | 'f' | 'f#' | 'f03' | 'f08' | 'f18' | 'f77' | 'f90' | 'f95' | 'fennel' | 'fish' | 'fluent' | 'for' | 'fortran-fixed-form' | 'fortran-free-form' | 'fs' | 'fsharp' | 'fsl' | 'ftl' | 'gdresource' | 'gdscript' | 'gdshader' | 'genie' | 'gherkin' | 'git-commit' | 'git-rebase' | 'gjs' | 'gleam' | 'glimmer-js' | 'glimmer-ts' | 'glsl' | 'gnuplot' | 'go' | 'gql' | 'graphql' | 'groovy' | 'gts' | 'hack' | 'haml' | 'handlebars' | 'haskell' | 'haxe' | 'hbs' | 'hcl' | 'hjson' | 'hlsl' | 'hs' | 'html' | 'html-derivative' | 'http' | 'hxml' | 'hy' | 'imba' | 'ini' | 'jade' | 'java' | 'javascript' | 'jinja' | 'jison' | 'jl' | 'js' | 'json' | 'json5' | 'jsonc' | 'jsonl' | 'jsonnet' | 'jssm' | 'jsx' | 'julia' | 'kotlin' | 'kql' | 'kt' | 'kts' | 'kusto' | 'latex' | 'lean' | 'lean4' | 'less' | 'liquid' | 'lisp' | 'lit' | 'log' | 'logo' | 'lua' | 'luau' | 'make' | 'makefile' | 'markdown' | 'marko' | 'matlab' | 'md' | 'mdc' | 'mdx' | 'mediawiki' | 'mermaid' | 'mojo' | 'move' | 'nar' | 'narrat' | 'nextflow' | 'nf' | 'nginx' | 'nim' | 'nix' | 'nu' | 'nushell' | 'objc' | 'objective-c' | 'objective-cpp' | 'ocaml' | 'pascal' | 'perl' | 'perl6' | 'php' | 'plsql' | 'po' | 'postcss' | 'pot' | 'potx' | 'powerquery' | 'powershell' | 'prisma' | 'prolog' | 'properties' | 'proto' | 'protobuf' | 'ps' | 'ps1' | 'pug' | 'puppet' | 'purescript' | 'py' | 'python' | 'ql' | 'qml' | 'qmldir' | 'qss' | 'r' | 'racket' | 'raku' | 'razor' | 'rb' | 'reg' | 'regex' | 'regexp' | 'rel' | 'riscv' | 'rs' | 'rst' | 'ruby' | 'rust' | 'sas' | 'sass' | 'scala' | 'scheme' | 'scss' | 'sh' | 'shader' | 'shaderlab' | 'shell' | 'shellscript' | 'shellsession' | 'smalltalk' | 'solidity' | 'soy' | 'sparql' | 'spl' | 'splunk' | 'sql' | 'ssh-config' | 'stata' | 'styl' | 'stylus' | 'svelte' | 'swift' | 'system-verilog' | 'systemd' | 'tasl' | 'tcl' | 'templ' | 'terraform' | 'tex' | 'tf' | 'tfvars' | 'toml' | 'ts' | 'ts-tags' | 'tsp' | 'tsv' | 'tsx' | 'turtle' | 'twig' | 'typ' | 'typescript' | 'typespec' | 'typst' | 'v' | 'vala' | 'vb' | 'verilog' | 'vhdl' | 'vim' | 'viml' | 'vimscript' | 'vue' | 'vue-html' | 'vy' | 'vyper' | 'wasm' | 'wenyan' | 'wgsl' | 'wiki' | 'wikitext' | 'wl' | 'wolfram' | 'xml' | 'xsl' | 'yaml' | 'yml' | 'zenscript' | 'zig' | 'zsh' | '文言';
|
|
10
|
+
type BundledLanguage = 'abap' | 'actionscript-3' | 'ada' | 'adoc' | 'angular-html' | 'angular-ts' | 'apache' | 'apex' | 'apl' | 'applescript' | 'ara' | 'asciidoc' | 'asm' | 'astro' | 'awk' | 'ballerina' | 'bash' | 'bat' | 'batch' | 'be' | 'beancount' | 'berry' | 'bibtex' | 'bicep' | 'blade' | 'c' | 'c#' | 'c++' | 'cadence' | 'cdc' | 'clarity' | 'clj' | 'clojure' | 'closure-templates' | 'cmake' | 'cmd' | 'cobol' | 'codeowners' | 'codeql' | 'coffee' | 'coffeescript' | 'common-lisp' | 'console' | 'coq' | 'cpp' | 'cql' | 'crystal' | 'cs' | 'csharp' | 'css' | 'csv' | 'cue' | 'cypher' | 'd' | 'dart' | 'dax' | 'desktop' | 'diff' | 'docker' | 'dockerfile' | 'dotenv' | 'dream-maker' | 'edge' | 'elisp' | 'elixir' | 'elm' | 'emacs-lisp' | 'erb' | 'erl' | 'erlang' | 'f' | 'f#' | 'f03' | 'f08' | 'f18' | 'f77' | 'f90' | 'f95' | 'fennel' | 'fish' | 'fluent' | 'for' | 'fortran-fixed-form' | 'fortran-free-form' | 'fs' | 'fsharp' | 'fsl' | 'ftl' | 'gdresource' | 'gdscript' | 'gdshader' | 'genie' | 'gherkin' | 'git-commit' | 'git-rebase' | 'gjs' | 'gleam' | 'glimmer-js' | 'glimmer-ts' | 'glsl' | 'gnuplot' | 'go' | 'gql' | 'graphql' | 'groovy' | 'gts' | 'hack' | 'haml' | 'handlebars' | 'haskell' | 'haxe' | 'hbs' | 'hcl' | 'hjson' | 'hlsl' | 'hs' | 'html' | 'html-derivative' | 'http' | 'hxml' | 'hy' | 'imba' | 'ini' | 'jade' | 'java' | 'javascript' | 'jinja' | 'jison' | 'jl' | 'js' | 'json' | 'json5' | 'jsonc' | 'jsonl' | 'jsonnet' | 'jssm' | 'jsx' | 'julia' | 'kotlin' | 'kql' | 'kt' | 'kts' | 'kusto' | 'latex' | 'lean' | 'lean4' | 'less' | 'liquid' | 'lisp' | 'lit' | 'log' | 'logo' | 'lua' | 'luau' | 'make' | 'makefile' | 'markdown' | 'marko' | 'matlab' | 'md' | 'mdc' | 'mdx' | 'mediawiki' | 'mermaid' | 'mips' | 'mipsasm' | 'mmd' | 'mojo' | 'move' | 'nar' | 'narrat' | 'nextflow' | 'nf' | 'nginx' | 'nim' | 'nix' | 'nu' | 'nushell' | 'objc' | 'objective-c' | 'objective-cpp' | 'ocaml' | 'pascal' | 'perl' | 'perl6' | 'php' | 'plsql' | 'po' | 'postcss' | 'pot' | 'potx' | 'powerquery' | 'powershell' | 'prisma' | 'prolog' | 'properties' | 'proto' | 'protobuf' | 'ps' | 'ps1' | 'pug' | 'puppet' | 'purescript' | 'py' | 'python' | 'ql' | 'qml' | 'qmldir' | 'qss' | 'r' | 'racket' | 'raku' | 'razor' | 'rb' | 'reg' | 'regex' | 'regexp' | 'rel' | 'riscv' | 'rs' | 'rst' | 'ruby' | 'rust' | 'sas' | 'sass' | 'scala' | 'scheme' | 'scss' | 'sh' | 'shader' | 'shaderlab' | 'shell' | 'shellscript' | 'shellsession' | 'smalltalk' | 'solidity' | 'soy' | 'sparql' | 'spl' | 'splunk' | 'sql' | 'ssh-config' | 'stata' | 'styl' | 'stylus' | 'svelte' | 'swift' | 'system-verilog' | 'systemd' | 'tasl' | 'tcl' | 'templ' | 'terraform' | 'tex' | 'tf' | 'tfvars' | 'toml' | 'ts' | 'ts-tags' | 'tsp' | 'tsv' | 'tsx' | 'turtle' | 'twig' | 'typ' | 'typescript' | 'typespec' | 'typst' | 'v' | 'vala' | 'vb' | 'verilog' | 'vhdl' | 'vim' | 'viml' | 'vimscript' | 'vue' | 'vue-html' | 'vy' | 'vyper' | 'wasm' | 'wenyan' | 'wgsl' | 'wiki' | 'wikitext' | 'wl' | 'wolfram' | 'xml' | 'xsl' | 'yaml' | 'yml' | 'zenscript' | 'zig' | 'zsh' | '文言';
|
|
11
11
|
declare const bundledLanguages: Record<BundledLanguage, DynamicImportLanguageRegistration>;
|
|
12
12
|
|
|
13
13
|
export { type BundledLanguage, bundledLanguages, bundledLanguagesAlias, bundledLanguagesBase, bundledLanguagesInfo };
|
package/dist/langs.mjs
CHANGED
|
@@ -692,8 +692,19 @@ const bundledLanguagesInfo = [
|
|
|
692
692
|
{
|
|
693
693
|
"id": "mermaid",
|
|
694
694
|
"name": "Mermaid",
|
|
695
|
+
"aliases": [
|
|
696
|
+
"mmd"
|
|
697
|
+
],
|
|
695
698
|
"import": () => import('./langs/mermaid.mjs')
|
|
696
699
|
},
|
|
700
|
+
{
|
|
701
|
+
"id": "mipsasm",
|
|
702
|
+
"name": "MIPS Assembly",
|
|
703
|
+
"aliases": [
|
|
704
|
+
"mips"
|
|
705
|
+
],
|
|
706
|
+
"import": () => import('./langs/mipsasm.mjs')
|
|
707
|
+
},
|
|
697
708
|
{
|
|
698
709
|
"id": "mojo",
|
|
699
710
|
"name": "Mojo",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/* Theme: github-dark-default */
|
|
2
|
-
export default Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#f78166\",\"activityBar.background\":\"#0d1117\",\"activityBar.border\":\"#30363d\",\"activityBar.foreground\":\"#e6edf3\",\"activityBar.inactiveForeground\":\"#7d8590\",\"activityBarBadge.background\":\"#1f6feb\",\"activityBarBadge.foreground\":\"#ffffff\",\"badge.background\":\"#1f6feb\",\"badge.foreground\":\"#ffffff\",\"breadcrumb.activeSelectionForeground\":\"#7d8590\",\"breadcrumb.focusForeground\":\"#e6edf3\",\"breadcrumb.foreground\":\"#7d8590\",\"breadcrumbPicker.background\":\"#161b22\",\"button.background\":\"#238636\",\"button.foreground\":\"#ffffff\",\"button.hoverBackground\":\"#2ea043\",\"button.secondaryBackground\":\"#282e33\",\"button.secondaryForeground\":\"#c9d1d9\",\"button.secondaryHoverBackground\":\"#30363d\",\"checkbox.background\":\"#161b22\",\"checkbox.border\":\"#30363d\",\"debugConsole.errorForeground\":\"#ffa198\",\"debugConsole.infoForeground\":\"#8b949e\",\"debugConsole.sourceForeground\":\"#e3b341\",\"debugConsole.warningForeground\":\"#d29922\",\"debugConsoleInputIcon.foreground\":\"#bc8cff\",\"debugIcon.breakpointForeground\":\"#f85149\",\"debugTokenExpression.boolean\":\"#56d364\",\"debugTokenExpression.error\":\"#ffa198\",\"debugTokenExpression.name\":\"#79c0ff\",\"debugTokenExpression.number\":\"#56d364\",\"debugTokenExpression.string\":\"#a5d6ff\",\"debugTokenExpression.value\":\"#a5d6ff\",\"debugToolBar.background\":\"#161b22\",\"descriptionForeground\":\"#7d8590\",\"diffEditor.insertedLineBackground\":\"#23863626\",\"diffEditor.insertedTextBackground\":\"#3fb9504d\",\"diffEditor.removedLineBackground\":\"#da363326\",\"diffEditor.removedTextBackground\":\"#ff7b724d\",\"dropdown.background\":\"#161b22\",\"dropdown.border\":\"#30363d\",\"dropdown.foreground\":\"#e6edf3\",\"dropdown.listBackground\":\"#161b22\",\"editor.background\":\"#0d1117\",\"editor.findMatchBackground\":\"#9e6a03\",\"editor.findMatchHighlightBackground\":\"#f2cc6080\",\"editor.focusedStackFrameHighlightBackground\":\"#2ea04366\",\"editor.foldBackground\":\"#6e76811a\",\"editor.foreground\":\"#e6edf3\",\"editor.lineHighlightBackground\":\"#6e76811a\",\"editor.linkedEditingBackground\":\"#2f81f712\",\"editor.selectionHighlightBackground\":\"#3fb95040\",\"editor.stackFrameHighlightBackground\":\"#bb800966\",\"editor.wordHighlightBackground\":\"#6e768180\",\"editor.wordHighlightBorder\":\"#6e768199\",\"editor.wordHighlightStrongBackground\":\"#6e76814d\",\"editor.wordHighlightStrongBorder\":\"#6e768199\",\"editorBracketHighlight.foreground1\":\"#79c0ff\",\"editorBracketHighlight.foreground2\":\"#56d364\",\"editorBracketHighlight.foreground3\":\"#e3b341\",\"editorBracketHighlight.foreground4\":\"#ffa198\",\"editorBracketHighlight.foreground5\":\"#ff9bce\",\"editorBracketHighlight.foreground6\":\"#d2a8ff\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#7d8590\",\"editorBracketMatch.background\":\"#3fb95040\",\"editorBracketMatch.border\":\"#3fb95099\",\"editorCursor.foreground\":\"#2f81f7\",\"editorGroup.border\":\"#30363d\",\"editorGroupHeader.tabsBackground\":\"#010409\",\"editorGroupHeader.tabsBorder\":\"#30363d\",\"editorGutter.addedBackground\":\"#2ea04366\",\"editorGutter.deletedBackground\":\"#f8514966\",\"editorGutter.modifiedBackground\":\"#bb800966\",\"editorIndentGuide.activeBackground\":\"#e6edf33d\",\"editorIndentGuide.background\":\"#e6edf31f\",\"editorInlayHint.background\":\"#8b949e33\",\"editorInlayHint.foreground\":\"#7d8590\",\"editorInlayHint.paramBackground\":\"#8b949e33\",\"editorInlayHint.paramForeground\":\"#7d8590\",\"editorInlayHint.typeBackground\":\"#8b949e33\",\"editorInlayHint.typeForeground\":\"#7d8590\",\"editorLineNumber.activeForeground\":\"#e6edf3\",\"editorLineNumber.foreground\":\"#6e7681\",\"editorOverviewRuler.border\":\"#010409\",\"editorWhitespace.foreground\":\"#484f58\",\"editorWidget.background\":\"#161b22\",\"errorForeground\":\"#f85149\",\"focusBorder\":\"#1f6feb\",\"foreground\":\"#e6edf3\",\"gitDecoration.addedResourceForeground\":\"#3fb950\",\"gitDecoration.conflictingResourceForeground\":\"#db6d28\",\"gitDecoration.deletedResourceForeground\":\"#f85149\",\"gitDecoration.ignoredResourceForeground\":\"#6e7681\",\"gitDecoration.modifiedResourceForeground\":\"#d29922\",\"gitDecoration.submoduleResourceForeground\":\"#7d8590\",\"gitDecoration.untrackedResourceForeground\":\"#3fb950\",\"icon.foreground\":\"#7d8590\",\"input.background\":\"#0d1117\",\"input.border\":\"#30363d\",\"input.foreground\":\"#e6edf3\",\"input.placeholderForeground\":\"#6e7681\",\"keybindingLabel.foreground\":\"#e6edf3\",\"list.activeSelectionBackground\":\"#6e768166\",\"list.activeSelectionForeground\":\"#e6edf3\",\"list.focusBackground\":\"#388bfd26\",\"list.focusForeground\":\"#e6edf3\",\"list.highlightForeground\":\"#2f81f7\",\"list.hoverBackground\":\"#6e76811a\",\"list.hoverForeground\":\"#e6edf3\",\"list.inactiveFocusBackground\":\"#388bfd26\",\"list.inactiveSelectionBackground\":\"#6e768166\",\"list.inactiveSelectionForeground\":\"#e6edf3\",\"minimapSlider.activeBackground\":\"#8b949e47\",\"minimapSlider.background\":\"#8b949e33\",\"minimapSlider.hoverBackground\":\"#8b949e3d\",\"notificationCenterHeader.background\":\"#161b22\",\"notificationCenterHeader.foreground\":\"#7d8590\",\"notifications.background\":\"#161b22\",\"notifications.border\":\"#30363d\",\"notifications.foreground\":\"#e6edf3\",\"notificationsErrorIcon.foreground\":\"#f85149\",\"notificationsInfoIcon.foreground\":\"#2f81f7\",\"notificationsWarningIcon.foreground\":\"#d29922\",\"panel.background\":\"#010409\",\"panel.border\":\"#30363d\",\"panelInput.border\":\"#30363d\",\"panelTitle.activeBorder\":\"#f78166\",\"panelTitle.activeForeground\":\"#e6edf3\",\"panelTitle.inactiveForeground\":\"#7d8590\",\"peekViewEditor.background\":\"#6e76811a\",\"peekViewEditor.matchHighlightBackground\":\"#bb800966\",\"peekViewResult.background\":\"#0d1117\",\"peekViewResult.matchHighlightBackground\":\"#bb800966\",\"pickerGroup.border\":\"#30363d\",\"pickerGroup.foreground\":\"#7d8590\",\"progressBar.background\":\"#1f6feb\",\"quickInput.background\":\"#161b22\",\"quickInput.foreground\":\"#e6edf3\",\"scrollbar.shadow\":\"#484f5833\",\"scrollbarSlider.activeBackground\":\"#8b949e47\",\"scrollbarSlider.background\":\"#8b949e33\",\"scrollbarSlider.hoverBackground\":\"#8b949e3d\",\"settings.headerForeground\":\"#e6edf3\",\"settings.modifiedItemIndicator\":\"#bb800966\",\"sideBar.background\":\"#010409\",\"sideBar.border\":\"#30363d\",\"sideBar.foreground\":\"#e6edf3\",\"sideBarSectionHeader.background\":\"#010409\",\"sideBarSectionHeader.border\":\"#30363d\",\"sideBarSectionHeader.foreground\":\"#e6edf3\",\"sideBarTitle.foreground\":\"#e6edf3\",\"statusBar.background\":\"#0d1117\",\"statusBar.border\":\"#30363d\",\"statusBar.debuggingBackground\":\"#da3633\",\"statusBar.debuggingForeground\":\"#ffffff\",\"statusBar.focusBorder\":\"#1f6feb80\",\"statusBar.foreground\":\"#7d8590\",\"statusBar.noFolderBackground\":\"#0d1117\",\"statusBarItem.activeBackground\":\"#e6edf31f\",\"statusBarItem.focusBorder\":\"#1f6feb\",\"statusBarItem.hoverBackground\":\"#e6edf314\",\"statusBarItem.prominentBackground\":\"#6e768166\",\"statusBarItem.remoteBackground\":\"#30363d\",\"statusBarItem.remoteForeground\":\"#e6edf3\",\"symbolIcon.arrayForeground\":\"#f0883e\",\"symbolIcon.booleanForeground\":\"#58a6ff\",\"symbolIcon.classForeground\":\"#f0883e\",\"symbolIcon.colorForeground\":\"#79c0ff\",\"symbolIcon.constantForeground\":[\"#aff5b4\",\"#7ee787\",\"#56d364\",\"#3fb950\",\"#2ea043\",\"#238636\",\"#196c2e\",\"#0f5323\",\"#033a16\",\"#04260f\"],\"symbolIcon.constructorForeground\":\"#d2a8ff\",\"symbolIcon.enumeratorForeground\":\"#f0883e\",\"symbolIcon.enumeratorMemberForeground\":\"#58a6ff\",\"symbolIcon.eventForeground\":\"#6e7681\",\"symbolIcon.fieldForeground\":\"#f0883e\",\"symbolIcon.fileForeground\":\"#d29922\",\"symbolIcon.folderForeground\":\"#d29922\",\"symbolIcon.functionForeground\":\"#bc8cff\",\"symbolIcon.interfaceForeground\":\"#f0883e\",\"symbolIcon.keyForeground\":\"#58a6ff\",\"symbolIcon.keywordForeground\":\"#ff7b72\",\"symbolIcon.methodForeground\":\"#bc8cff\",\"symbolIcon.moduleForeground\":\"#ff7b72\",\"symbolIcon.namespaceForeground\":\"#ff7b72\",\"symbolIcon.nullForeground\":\"#58a6ff\",\"symbolIcon.numberForeground\":\"#3fb950\",\"symbolIcon.objectForeground\":\"#f0883e\",\"symbolIcon.operatorForeground\":\"#79c0ff\",\"symbolIcon.packageForeground\":\"#f0883e\",\"symbolIcon.propertyForeground\":\"#f0883e\",\"symbolIcon.referenceForeground\":\"#58a6ff\",\"symbolIcon.snippetForeground\":\"#58a6ff\",\"symbolIcon.stringForeground\":\"#79c0ff\",\"symbolIcon.structForeground\":\"#f0883e\",\"symbolIcon.textForeground\":\"#79c0ff\",\"symbolIcon.typeParameterForeground\":\"#79c0ff\",\"symbolIcon.unitForeground\":\"#58a6ff\",\"symbolIcon.variableForeground\":\"#f0883e\",\"tab.activeBackground\":\"#0d1117\",\"tab.activeBorder\":\"#0d1117\",\"tab.activeBorderTop\":\"#f78166\",\"tab.activeForeground\":\"#e6edf3\",\"tab.border\":\"#30363d\",\"tab.hoverBackground\":\"#0d1117\",\"tab.inactiveBackground\":\"#010409\",\"tab.inactiveForeground\":\"#7d8590\",\"tab.unfocusedActiveBorder\":\"#0d1117\",\"tab.unfocusedActiveBorderTop\":\"#30363d\",\"tab.unfocusedHoverBackground\":\"#6e76811a\",\"terminal.ansiBlack\":\"#484f58\",\"terminal.ansiBlue\":\"#58a6ff\",\"terminal.ansiBrightBlack\":\"#6e7681\",\"terminal.ansiBrightBlue\":\"#79c0ff\",\"terminal.ansiBrightCyan\":\"#56d4dd\",\"terminal.ansiBrightGreen\":\"#56d364\",\"terminal.ansiBrightMagenta\":\"#d2a8ff\",\"terminal.ansiBrightRed\":\"#ffa198\",\"terminal.ansiBrightWhite\":\"#ffffff\",\"terminal.ansiBrightYellow\":\"#e3b341\",\"terminal.ansiCyan\":\"#39c5cf\",\"terminal.ansiGreen\":\"#3fb950\",\"terminal.ansiMagenta\":\"#bc8cff\",\"terminal.ansiRed\":\"#ff7b72\",\"terminal.ansiWhite\":\"#b1bac4\",\"terminal.ansiYellow\":\"#d29922\",\"terminal.foreground\":\"#e6edf3\",\"textBlockQuote.background\":\"#010409\",\"textBlockQuote.border\":\"#30363d\",\"textCodeBlock.background\":\"#6e768166\",\"textLink.activeForeground\":\"#2f81f7\",\"textLink.foreground\":\"#2f81f7\",\"textPreformat.foreground\":\"#7d8590\",\"textSeparator.foreground\":\"#21262d\",\"titleBar.activeBackground\":\"#0d1117\",\"titleBar.activeForeground\":\"#7d8590\",\"titleBar.border\":\"#30363d\",\"titleBar.inactiveBackground\":\"#010409\",\"titleBar.inactiveForeground\":\"#7d8590\",\"tree.indentGuidesStroke\":\"#21262d\",\"welcomePage.buttonBackground\":\"#21262d\",\"welcomePage.buttonHoverBackground\":\"#30363d\"},\"displayName\":\"GitHub Dark Default\",\"name\":\"github-dark-default\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#8b949e\"}},{\"scope\":[\"constant.other.placeholder\",\"constant.character\"],\"settings\":{\"foreground\":\"#ff7b72\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\",\"entity\"],\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":[\"entity.name\",\"meta.export.default\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#ffa657\"}},{\"scope\":[\"variable.parameter.function\",\"meta.jsx.children\",\"meta.block\",\"meta.tag.attributes\",\"entity.name.constant\",\"meta.object.member\",\"meta.embedded.expression\"],\"settings\":{\"foreground\":\"#e6edf3\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#d2a8ff\"}},{\"scope\":[\"entity.name.tag\",\"support.class.component\"],\"settings\":{\"foreground\":\"#7ee787\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#ff7b72\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#ff7b72\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#e6edf3\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#a5d6ff\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#ffa657\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#e6edf3\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffa198\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffa198\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffa198\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffa198\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#ff7b72\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#f0f6fc\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#ffa198\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#a5d6ff\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#a5d6ff\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#7ee787\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#7ee787\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#ffa657\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79c0ff\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#7ee787\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#e6edf3\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#e6edf3\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#490202\",\"foreground\":\"#ffa198\"}},{\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#ff7b72\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#04260f\",\"foreground\":\"#7ee787\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#5a1e02\",\"foreground\":\"#ffa657\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#79c0ff\",\"foreground\":\"#161b22\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#d2a8ff\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79c0ff\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#8b949e\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#ffa198\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"foreground\":\"#a5d6ff\"}}],\"type\":\"dark\"}"))
|
|
2
|
+
export default Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#f78166\",\"activityBar.background\":\"#0d1117\",\"activityBar.border\":\"#30363d\",\"activityBar.foreground\":\"#e6edf3\",\"activityBar.inactiveForeground\":\"#7d8590\",\"activityBarBadge.background\":\"#1f6feb\",\"activityBarBadge.foreground\":\"#ffffff\",\"badge.background\":\"#1f6feb\",\"badge.foreground\":\"#ffffff\",\"breadcrumb.activeSelectionForeground\":\"#7d8590\",\"breadcrumb.focusForeground\":\"#e6edf3\",\"breadcrumb.foreground\":\"#7d8590\",\"breadcrumbPicker.background\":\"#161b22\",\"button.background\":\"#238636\",\"button.foreground\":\"#ffffff\",\"button.hoverBackground\":\"#2ea043\",\"button.secondaryBackground\":\"#282e33\",\"button.secondaryForeground\":\"#c9d1d9\",\"button.secondaryHoverBackground\":\"#30363d\",\"checkbox.background\":\"#161b22\",\"checkbox.border\":\"#30363d\",\"debugConsole.errorForeground\":\"#ffa198\",\"debugConsole.infoForeground\":\"#8b949e\",\"debugConsole.sourceForeground\":\"#e3b341\",\"debugConsole.warningForeground\":\"#d29922\",\"debugConsoleInputIcon.foreground\":\"#bc8cff\",\"debugIcon.breakpointForeground\":\"#f85149\",\"debugTokenExpression.boolean\":\"#56d364\",\"debugTokenExpression.error\":\"#ffa198\",\"debugTokenExpression.name\":\"#79c0ff\",\"debugTokenExpression.number\":\"#56d364\",\"debugTokenExpression.string\":\"#a5d6ff\",\"debugTokenExpression.value\":\"#a5d6ff\",\"debugToolBar.background\":\"#161b22\",\"descriptionForeground\":\"#7d8590\",\"diffEditor.insertedLineBackground\":\"#23863626\",\"diffEditor.insertedTextBackground\":\"#3fb9504d\",\"diffEditor.removedLineBackground\":\"#da363326\",\"diffEditor.removedTextBackground\":\"#ff7b724d\",\"dropdown.background\":\"#161b22\",\"dropdown.border\":\"#30363d\",\"dropdown.foreground\":\"#e6edf3\",\"dropdown.listBackground\":\"#161b22\",\"editor.background\":\"#0d1117\",\"editor.findMatchBackground\":\"#9e6a03\",\"editor.findMatchHighlightBackground\":\"#f2cc6080\",\"editor.focusedStackFrameHighlightBackground\":\"#2ea04366\",\"editor.foldBackground\":\"#6e76811a\",\"editor.foreground\":\"#e6edf3\",\"editor.lineHighlightBackground\":\"#6e76811a\",\"editor.linkedEditingBackground\":\"#2f81f712\",\"editor.selectionHighlightBackground\":\"#3fb95040\",\"editor.stackFrameHighlightBackground\":\"#bb800966\",\"editor.wordHighlightBackground\":\"#6e768180\",\"editor.wordHighlightBorder\":\"#6e768199\",\"editor.wordHighlightStrongBackground\":\"#6e76814d\",\"editor.wordHighlightStrongBorder\":\"#6e768199\",\"editorBracketHighlight.foreground1\":\"#79c0ff\",\"editorBracketHighlight.foreground2\":\"#56d364\",\"editorBracketHighlight.foreground3\":\"#e3b341\",\"editorBracketHighlight.foreground4\":\"#ffa198\",\"editorBracketHighlight.foreground5\":\"#ff9bce\",\"editorBracketHighlight.foreground6\":\"#d2a8ff\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#7d8590\",\"editorBracketMatch.background\":\"#3fb95040\",\"editorBracketMatch.border\":\"#3fb95099\",\"editorCursor.foreground\":\"#2f81f7\",\"editorGroup.border\":\"#30363d\",\"editorGroupHeader.tabsBackground\":\"#010409\",\"editorGroupHeader.tabsBorder\":\"#30363d\",\"editorGutter.addedBackground\":\"#2ea04366\",\"editorGutter.deletedBackground\":\"#f8514966\",\"editorGutter.modifiedBackground\":\"#bb800966\",\"editorIndentGuide.activeBackground\":\"#e6edf33d\",\"editorIndentGuide.background\":\"#e6edf31f\",\"editorInlayHint.background\":\"#8b949e33\",\"editorInlayHint.foreground\":\"#7d8590\",\"editorInlayHint.paramBackground\":\"#8b949e33\",\"editorInlayHint.paramForeground\":\"#7d8590\",\"editorInlayHint.typeBackground\":\"#8b949e33\",\"editorInlayHint.typeForeground\":\"#7d8590\",\"editorLineNumber.activeForeground\":\"#e6edf3\",\"editorLineNumber.foreground\":\"#6e7681\",\"editorOverviewRuler.border\":\"#010409\",\"editorWhitespace.foreground\":\"#484f58\",\"editorWidget.background\":\"#161b22\",\"errorForeground\":\"#f85149\",\"focusBorder\":\"#1f6feb\",\"foreground\":\"#e6edf3\",\"gitDecoration.addedResourceForeground\":\"#3fb950\",\"gitDecoration.conflictingResourceForeground\":\"#db6d28\",\"gitDecoration.deletedResourceForeground\":\"#f85149\",\"gitDecoration.ignoredResourceForeground\":\"#6e7681\",\"gitDecoration.modifiedResourceForeground\":\"#d29922\",\"gitDecoration.submoduleResourceForeground\":\"#7d8590\",\"gitDecoration.untrackedResourceForeground\":\"#3fb950\",\"icon.foreground\":\"#7d8590\",\"input.background\":\"#0d1117\",\"input.border\":\"#30363d\",\"input.foreground\":\"#e6edf3\",\"input.placeholderForeground\":\"#6e7681\",\"keybindingLabel.foreground\":\"#e6edf3\",\"list.activeSelectionBackground\":\"#6e768166\",\"list.activeSelectionForeground\":\"#e6edf3\",\"list.focusBackground\":\"#388bfd26\",\"list.focusForeground\":\"#e6edf3\",\"list.highlightForeground\":\"#2f81f7\",\"list.hoverBackground\":\"#6e76811a\",\"list.hoverForeground\":\"#e6edf3\",\"list.inactiveFocusBackground\":\"#388bfd26\",\"list.inactiveSelectionBackground\":\"#6e768166\",\"list.inactiveSelectionForeground\":\"#e6edf3\",\"minimapSlider.activeBackground\":\"#8b949e47\",\"minimapSlider.background\":\"#8b949e33\",\"minimapSlider.hoverBackground\":\"#8b949e3d\",\"notificationCenterHeader.background\":\"#161b22\",\"notificationCenterHeader.foreground\":\"#7d8590\",\"notifications.background\":\"#161b22\",\"notifications.border\":\"#30363d\",\"notifications.foreground\":\"#e6edf3\",\"notificationsErrorIcon.foreground\":\"#f85149\",\"notificationsInfoIcon.foreground\":\"#2f81f7\",\"notificationsWarningIcon.foreground\":\"#d29922\",\"panel.background\":\"#010409\",\"panel.border\":\"#30363d\",\"panelInput.border\":\"#30363d\",\"panelTitle.activeBorder\":\"#f78166\",\"panelTitle.activeForeground\":\"#e6edf3\",\"panelTitle.inactiveForeground\":\"#7d8590\",\"peekViewEditor.background\":\"#6e76811a\",\"peekViewEditor.matchHighlightBackground\":\"#bb800966\",\"peekViewResult.background\":\"#0d1117\",\"peekViewResult.matchHighlightBackground\":\"#bb800966\",\"pickerGroup.border\":\"#30363d\",\"pickerGroup.foreground\":\"#7d8590\",\"progressBar.background\":\"#1f6feb\",\"quickInput.background\":\"#161b22\",\"quickInput.foreground\":\"#e6edf3\",\"scrollbar.shadow\":\"#484f5833\",\"scrollbarSlider.activeBackground\":\"#8b949e47\",\"scrollbarSlider.background\":\"#8b949e33\",\"scrollbarSlider.hoverBackground\":\"#8b949e3d\",\"settings.headerForeground\":\"#e6edf3\",\"settings.modifiedItemIndicator\":\"#bb800966\",\"sideBar.background\":\"#010409\",\"sideBar.border\":\"#30363d\",\"sideBar.foreground\":\"#e6edf3\",\"sideBarSectionHeader.background\":\"#010409\",\"sideBarSectionHeader.border\":\"#30363d\",\"sideBarSectionHeader.foreground\":\"#e6edf3\",\"sideBarTitle.foreground\":\"#e6edf3\",\"statusBar.background\":\"#0d1117\",\"statusBar.border\":\"#30363d\",\"statusBar.debuggingBackground\":\"#da3633\",\"statusBar.debuggingForeground\":\"#ffffff\",\"statusBar.focusBorder\":\"#1f6feb80\",\"statusBar.foreground\":\"#7d8590\",\"statusBar.noFolderBackground\":\"#0d1117\",\"statusBarItem.activeBackground\":\"#e6edf31f\",\"statusBarItem.focusBorder\":\"#1f6feb\",\"statusBarItem.hoverBackground\":\"#e6edf314\",\"statusBarItem.prominentBackground\":\"#6e768166\",\"statusBarItem.remoteBackground\":\"#30363d\",\"statusBarItem.remoteForeground\":\"#e6edf3\",\"symbolIcon.arrayForeground\":\"#f0883e\",\"symbolIcon.booleanForeground\":\"#58a6ff\",\"symbolIcon.classForeground\":\"#f0883e\",\"symbolIcon.colorForeground\":\"#79c0ff\",\"symbolIcon.constantForeground\":[\"#aff5b4\",\"#7ee787\",\"#56d364\",\"#3fb950\",\"#2ea043\",\"#238636\",\"#196c2e\",\"#0f5323\",\"#033a16\",\"#04260f\"],\"symbolIcon.constructorForeground\":\"#d2a8ff\",\"symbolIcon.enumeratorForeground\":\"#f0883e\",\"symbolIcon.enumeratorMemberForeground\":\"#58a6ff\",\"symbolIcon.eventForeground\":\"#6e7681\",\"symbolIcon.fieldForeground\":\"#f0883e\",\"symbolIcon.fileForeground\":\"#d29922\",\"symbolIcon.folderForeground\":\"#d29922\",\"symbolIcon.functionForeground\":\"#bc8cff\",\"symbolIcon.interfaceForeground\":\"#f0883e\",\"symbolIcon.keyForeground\":\"#58a6ff\",\"symbolIcon.keywordForeground\":\"#ff7b72\",\"symbolIcon.methodForeground\":\"#bc8cff\",\"symbolIcon.moduleForeground\":\"#ff7b72\",\"symbolIcon.namespaceForeground\":\"#ff7b72\",\"symbolIcon.nullForeground\":\"#58a6ff\",\"symbolIcon.numberForeground\":\"#3fb950\",\"symbolIcon.objectForeground\":\"#f0883e\",\"symbolIcon.operatorForeground\":\"#79c0ff\",\"symbolIcon.packageForeground\":\"#f0883e\",\"symbolIcon.propertyForeground\":\"#f0883e\",\"symbolIcon.referenceForeground\":\"#58a6ff\",\"symbolIcon.snippetForeground\":\"#58a6ff\",\"symbolIcon.stringForeground\":\"#79c0ff\",\"symbolIcon.structForeground\":\"#f0883e\",\"symbolIcon.textForeground\":\"#79c0ff\",\"symbolIcon.typeParameterForeground\":\"#79c0ff\",\"symbolIcon.unitForeground\":\"#58a6ff\",\"symbolIcon.variableForeground\":\"#f0883e\",\"tab.activeBackground\":\"#0d1117\",\"tab.activeBorder\":\"#0d1117\",\"tab.activeBorderTop\":\"#f78166\",\"tab.activeForeground\":\"#e6edf3\",\"tab.border\":\"#30363d\",\"tab.hoverBackground\":\"#0d1117\",\"tab.inactiveBackground\":\"#010409\",\"tab.inactiveForeground\":\"#7d8590\",\"tab.unfocusedActiveBorder\":\"#0d1117\",\"tab.unfocusedActiveBorderTop\":\"#30363d\",\"tab.unfocusedHoverBackground\":\"#6e76811a\",\"terminal.ansiBlack\":\"#484f58\",\"terminal.ansiBlue\":\"#58a6ff\",\"terminal.ansiBrightBlack\":\"#6e7681\",\"terminal.ansiBrightBlue\":\"#79c0ff\",\"terminal.ansiBrightCyan\":\"#56d4dd\",\"terminal.ansiBrightGreen\":\"#56d364\",\"terminal.ansiBrightMagenta\":\"#d2a8ff\",\"terminal.ansiBrightRed\":\"#ffa198\",\"terminal.ansiBrightWhite\":\"#ffffff\",\"terminal.ansiBrightYellow\":\"#e3b341\",\"terminal.ansiCyan\":\"#39c5cf\",\"terminal.ansiGreen\":\"#3fb950\",\"terminal.ansiMagenta\":\"#bc8cff\",\"terminal.ansiRed\":\"#ff7b72\",\"terminal.ansiWhite\":\"#b1bac4\",\"terminal.ansiYellow\":\"#d29922\",\"terminal.foreground\":\"#e6edf3\",\"textBlockQuote.background\":\"#010409\",\"textBlockQuote.border\":\"#30363d\",\"textCodeBlock.background\":\"#6e768166\",\"textLink.activeForeground\":\"#2f81f7\",\"textLink.foreground\":\"#2f81f7\",\"textPreformat.background\":\"#6e768166\",\"textPreformat.foreground\":\"#7d8590\",\"textSeparator.foreground\":\"#21262d\",\"titleBar.activeBackground\":\"#0d1117\",\"titleBar.activeForeground\":\"#7d8590\",\"titleBar.border\":\"#30363d\",\"titleBar.inactiveBackground\":\"#010409\",\"titleBar.inactiveForeground\":\"#7d8590\",\"tree.indentGuidesStroke\":\"#21262d\",\"welcomePage.buttonBackground\":\"#21262d\",\"welcomePage.buttonHoverBackground\":\"#30363d\"},\"displayName\":\"GitHub Dark Default\",\"name\":\"github-dark-default\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#8b949e\"}},{\"scope\":[\"constant.other.placeholder\",\"constant.character\"],\"settings\":{\"foreground\":\"#ff7b72\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\",\"entity\"],\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":[\"entity.name\",\"meta.export.default\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#ffa657\"}},{\"scope\":[\"variable.parameter.function\",\"meta.jsx.children\",\"meta.block\",\"meta.tag.attributes\",\"entity.name.constant\",\"meta.object.member\",\"meta.embedded.expression\"],\"settings\":{\"foreground\":\"#e6edf3\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#d2a8ff\"}},{\"scope\":[\"entity.name.tag\",\"support.class.component\"],\"settings\":{\"foreground\":\"#7ee787\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#ff7b72\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#ff7b72\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#e6edf3\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#a5d6ff\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#ffa657\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#e6edf3\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffa198\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffa198\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffa198\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffa198\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#ff7b72\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#f0f6fc\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#ffa198\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#a5d6ff\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#a5d6ff\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#7ee787\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#7ee787\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#ffa657\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79c0ff\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#7ee787\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#e6edf3\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#e6edf3\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#490202\",\"foreground\":\"#ffa198\"}},{\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#ff7b72\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#04260f\",\"foreground\":\"#7ee787\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#5a1e02\",\"foreground\":\"#ffa657\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#79c0ff\",\"foreground\":\"#161b22\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#d2a8ff\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79c0ff\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#8b949e\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#ffa198\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"foreground\":\"#a5d6ff\"}}],\"type\":\"dark\"}"))
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/* Theme: github-dark-dimmed */
|
|
2
|
-
export default Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#ec775c\",\"activityBar.background\":\"#22272e\",\"activityBar.border\":\"#444c56\",\"activityBar.foreground\":\"#adbac7\",\"activityBar.inactiveForeground\":\"#768390\",\"activityBarBadge.background\":\"#316dca\",\"activityBarBadge.foreground\":\"#cdd9e5\",\"badge.background\":\"#316dca\",\"badge.foreground\":\"#cdd9e5\",\"breadcrumb.activeSelectionForeground\":\"#768390\",\"breadcrumb.focusForeground\":\"#adbac7\",\"breadcrumb.foreground\":\"#768390\",\"breadcrumbPicker.background\":\"#2d333b\",\"button.background\":\"#347d39\",\"button.foreground\":\"#ffffff\",\"button.hoverBackground\":\"#46954a\",\"button.secondaryBackground\":\"#3d444d\",\"button.secondaryForeground\":\"#adbac7\",\"button.secondaryHoverBackground\":\"#444c56\",\"checkbox.background\":\"#2d333b\",\"checkbox.border\":\"#444c56\",\"debugConsole.errorForeground\":\"#ff938a\",\"debugConsole.infoForeground\":\"#768390\",\"debugConsole.sourceForeground\":\"#daaa3f\",\"debugConsole.warningForeground\":\"#c69026\",\"debugConsoleInputIcon.foreground\":\"#b083f0\",\"debugIcon.breakpointForeground\":\"#e5534b\",\"debugTokenExpression.boolean\":\"#6bc46d\",\"debugTokenExpression.error\":\"#ff938a\",\"debugTokenExpression.name\":\"#6cb6ff\",\"debugTokenExpression.number\":\"#6bc46d\",\"debugTokenExpression.string\":\"#96d0ff\",\"debugTokenExpression.value\":\"#96d0ff\",\"debugToolBar.background\":\"#2d333b\",\"descriptionForeground\":\"#768390\",\"diffEditor.insertedLineBackground\":\"#347d3926\",\"diffEditor.insertedTextBackground\":\"#57ab5a4d\",\"diffEditor.removedLineBackground\":\"#c93c3726\",\"diffEditor.removedTextBackground\":\"#f470674d\",\"dropdown.background\":\"#2d333b\",\"dropdown.border\":\"#444c56\",\"dropdown.foreground\":\"#adbac7\",\"dropdown.listBackground\":\"#2d333b\",\"editor.background\":\"#22272e\",\"editor.findMatchBackground\":\"#966600\",\"editor.findMatchHighlightBackground\":\"#eac55f80\",\"editor.focusedStackFrameHighlightBackground\":\"#46954a66\",\"editor.foldBackground\":\"#636e7b1a\",\"editor.foreground\":\"#adbac7\",\"editor.lineHighlightBackground\":\"#636e7b1a\",\"editor.linkedEditingBackground\":\"#539bf512\",\"editor.selectionHighlightBackground\":\"#57ab5a40\",\"editor.stackFrameHighlightBackground\":\"#ae7c1466\",\"editor.wordHighlightBackground\":\"#636e7b80\",\"editor.wordHighlightBorder\":\"#636e7b99\",\"editor.wordHighlightStrongBackground\":\"#636e7b4d\",\"editor.wordHighlightStrongBorder\":\"#636e7b99\",\"editorBracketHighlight.foreground1\":\"#6cb6ff\",\"editorBracketHighlight.foreground2\":\"#6bc46d\",\"editorBracketHighlight.foreground3\":\"#daaa3f\",\"editorBracketHighlight.foreground4\":\"#ff938a\",\"editorBracketHighlight.foreground5\":\"#fc8dc7\",\"editorBracketHighlight.foreground6\":\"#dcbdfb\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#768390\",\"editorBracketMatch.background\":\"#57ab5a40\",\"editorBracketMatch.border\":\"#57ab5a99\",\"editorCursor.foreground\":\"#539bf5\",\"editorGroup.border\":\"#444c56\",\"editorGroupHeader.tabsBackground\":\"#1c2128\",\"editorGroupHeader.tabsBorder\":\"#444c56\",\"editorGutter.addedBackground\":\"#46954a66\",\"editorGutter.deletedBackground\":\"#e5534b66\",\"editorGutter.modifiedBackground\":\"#ae7c1466\",\"editorIndentGuide.activeBackground\":\"#adbac73d\",\"editorIndentGuide.background\":\"#adbac71f\",\"editorInlayHint.background\":\"#76839033\",\"editorInlayHint.foreground\":\"#768390\",\"editorInlayHint.paramBackground\":\"#76839033\",\"editorInlayHint.paramForeground\":\"#768390\",\"editorInlayHint.typeBackground\":\"#76839033\",\"editorInlayHint.typeForeground\":\"#768390\",\"editorLineNumber.activeForeground\":\"#adbac7\",\"editorLineNumber.foreground\":\"#636e7b\",\"editorOverviewRuler.border\":\"#1c2128\",\"editorWhitespace.foreground\":\"#545d68\",\"editorWidget.background\":\"#2d333b\",\"errorForeground\":\"#e5534b\",\"focusBorder\":\"#316dca\",\"foreground\":\"#adbac7\",\"gitDecoration.addedResourceForeground\":\"#57ab5a\",\"gitDecoration.conflictingResourceForeground\":\"#cc6b2c\",\"gitDecoration.deletedResourceForeground\":\"#e5534b\",\"gitDecoration.ignoredResourceForeground\":\"#636e7b\",\"gitDecoration.modifiedResourceForeground\":\"#c69026\",\"gitDecoration.submoduleResourceForeground\":\"#768390\",\"gitDecoration.untrackedResourceForeground\":\"#57ab5a\",\"icon.foreground\":\"#768390\",\"input.background\":\"#22272e\",\"input.border\":\"#444c56\",\"input.foreground\":\"#adbac7\",\"input.placeholderForeground\":\"#636e7b\",\"keybindingLabel.foreground\":\"#adbac7\",\"list.activeSelectionBackground\":\"#636e7b66\",\"list.activeSelectionForeground\":\"#adbac7\",\"list.focusBackground\":\"#4184e426\",\"list.focusForeground\":\"#adbac7\",\"list.highlightForeground\":\"#539bf5\",\"list.hoverBackground\":\"#636e7b1a\",\"list.hoverForeground\":\"#adbac7\",\"list.inactiveFocusBackground\":\"#4184e426\",\"list.inactiveSelectionBackground\":\"#636e7b66\",\"list.inactiveSelectionForeground\":\"#adbac7\",\"minimapSlider.activeBackground\":\"#76839047\",\"minimapSlider.background\":\"#76839033\",\"minimapSlider.hoverBackground\":\"#7683903d\",\"notificationCenterHeader.background\":\"#2d333b\",\"notificationCenterHeader.foreground\":\"#768390\",\"notifications.background\":\"#2d333b\",\"notifications.border\":\"#444c56\",\"notifications.foreground\":\"#adbac7\",\"notificationsErrorIcon.foreground\":\"#e5534b\",\"notificationsInfoIcon.foreground\":\"#539bf5\",\"notificationsWarningIcon.foreground\":\"#c69026\",\"panel.background\":\"#1c2128\",\"panel.border\":\"#444c56\",\"panelInput.border\":\"#444c56\",\"panelTitle.activeBorder\":\"#ec775c\",\"panelTitle.activeForeground\":\"#adbac7\",\"panelTitle.inactiveForeground\":\"#768390\",\"peekViewEditor.background\":\"#636e7b1a\",\"peekViewEditor.matchHighlightBackground\":\"#ae7c1466\",\"peekViewResult.background\":\"#22272e\",\"peekViewResult.matchHighlightBackground\":\"#ae7c1466\",\"pickerGroup.border\":\"#444c56\",\"pickerGroup.foreground\":\"#768390\",\"progressBar.background\":\"#316dca\",\"quickInput.background\":\"#2d333b\",\"quickInput.foreground\":\"#adbac7\",\"scrollbar.shadow\":\"#545d6833\",\"scrollbarSlider.activeBackground\":\"#76839047\",\"scrollbarSlider.background\":\"#76839033\",\"scrollbarSlider.hoverBackground\":\"#7683903d\",\"settings.headerForeground\":\"#adbac7\",\"settings.modifiedItemIndicator\":\"#ae7c1466\",\"sideBar.background\":\"#1c2128\",\"sideBar.border\":\"#444c56\",\"sideBar.foreground\":\"#adbac7\",\"sideBarSectionHeader.background\":\"#1c2128\",\"sideBarSectionHeader.border\":\"#444c56\",\"sideBarSectionHeader.foreground\":\"#adbac7\",\"sideBarTitle.foreground\":\"#adbac7\",\"statusBar.background\":\"#22272e\",\"statusBar.border\":\"#444c56\",\"statusBar.debuggingBackground\":\"#c93c37\",\"statusBar.debuggingForeground\":\"#cdd9e5\",\"statusBar.focusBorder\":\"#316dca80\",\"statusBar.foreground\":\"#768390\",\"statusBar.noFolderBackground\":\"#22272e\",\"statusBarItem.activeBackground\":\"#adbac71f\",\"statusBarItem.focusBorder\":\"#316dca\",\"statusBarItem.hoverBackground\":\"#adbac714\",\"statusBarItem.prominentBackground\":\"#636e7b66\",\"statusBarItem.remoteBackground\":\"#444c56\",\"statusBarItem.remoteForeground\":\"#adbac7\",\"symbolIcon.arrayForeground\":\"#e0823d\",\"symbolIcon.booleanForeground\":\"#539bf5\",\"symbolIcon.classForeground\":\"#e0823d\",\"symbolIcon.colorForeground\":\"#6cb6ff\",\"symbolIcon.constantForeground\":[\"#b4f1b4\",\"#8ddb8c\",\"#6bc46d\",\"#57ab5a\",\"#46954a\",\"#347d39\",\"#2b6a30\",\"#245829\",\"#1b4721\",\"#113417\"],\"symbolIcon.constructorForeground\":\"#dcbdfb\",\"symbolIcon.enumeratorForeground\":\"#e0823d\",\"symbolIcon.enumeratorMemberForeground\":\"#539bf5\",\"symbolIcon.eventForeground\":\"#636e7b\",\"symbolIcon.fieldForeground\":\"#e0823d\",\"symbolIcon.fileForeground\":\"#c69026\",\"symbolIcon.folderForeground\":\"#c69026\",\"symbolIcon.functionForeground\":\"#b083f0\",\"symbolIcon.interfaceForeground\":\"#e0823d\",\"symbolIcon.keyForeground\":\"#539bf5\",\"symbolIcon.keywordForeground\":\"#f47067\",\"symbolIcon.methodForeground\":\"#b083f0\",\"symbolIcon.moduleForeground\":\"#f47067\",\"symbolIcon.namespaceForeground\":\"#f47067\",\"symbolIcon.nullForeground\":\"#539bf5\",\"symbolIcon.numberForeground\":\"#57ab5a\",\"symbolIcon.objectForeground\":\"#e0823d\",\"symbolIcon.operatorForeground\":\"#6cb6ff\",\"symbolIcon.packageForeground\":\"#e0823d\",\"symbolIcon.propertyForeground\":\"#e0823d\",\"symbolIcon.referenceForeground\":\"#539bf5\",\"symbolIcon.snippetForeground\":\"#539bf5\",\"symbolIcon.stringForeground\":\"#6cb6ff\",\"symbolIcon.structForeground\":\"#e0823d\",\"symbolIcon.textForeground\":\"#6cb6ff\",\"symbolIcon.typeParameterForeground\":\"#6cb6ff\",\"symbolIcon.unitForeground\":\"#539bf5\",\"symbolIcon.variableForeground\":\"#e0823d\",\"tab.activeBackground\":\"#22272e\",\"tab.activeBorder\":\"#22272e\",\"tab.activeBorderTop\":\"#ec775c\",\"tab.activeForeground\":\"#adbac7\",\"tab.border\":\"#444c56\",\"tab.hoverBackground\":\"#22272e\",\"tab.inactiveBackground\":\"#1c2128\",\"tab.inactiveForeground\":\"#768390\",\"tab.unfocusedActiveBorder\":\"#22272e\",\"tab.unfocusedActiveBorderTop\":\"#444c56\",\"tab.unfocusedHoverBackground\":\"#636e7b1a\",\"terminal.ansiBlack\":\"#545d68\",\"terminal.ansiBlue\":\"#539bf5\",\"terminal.ansiBrightBlack\":\"#636e7b\",\"terminal.ansiBrightBlue\":\"#6cb6ff\",\"terminal.ansiBrightCyan\":\"#56d4dd\",\"terminal.ansiBrightGreen\":\"#6bc46d\",\"terminal.ansiBrightMagenta\":\"#dcbdfb\",\"terminal.ansiBrightRed\":\"#ff938a\",\"terminal.ansiBrightWhite\":\"#cdd9e5\",\"terminal.ansiBrightYellow\":\"#daaa3f\",\"terminal.ansiCyan\":\"#39c5cf\",\"terminal.ansiGreen\":\"#57ab5a\",\"terminal.ansiMagenta\":\"#b083f0\",\"terminal.ansiRed\":\"#f47067\",\"terminal.ansiWhite\":\"#909dab\",\"terminal.ansiYellow\":\"#c69026\",\"terminal.foreground\":\"#adbac7\",\"textBlockQuote.background\":\"#1c2128\",\"textBlockQuote.border\":\"#444c56\",\"textCodeBlock.background\":\"#636e7b66\",\"textLink.activeForeground\":\"#539bf5\",\"textLink.foreground\":\"#539bf5\",\"textPreformat.foreground\":\"#768390\",\"textSeparator.foreground\":\"#373e47\",\"titleBar.activeBackground\":\"#22272e\",\"titleBar.activeForeground\":\"#768390\",\"titleBar.border\":\"#444c56\",\"titleBar.inactiveBackground\":\"#1c2128\",\"titleBar.inactiveForeground\":\"#768390\",\"tree.indentGuidesStroke\":\"#373e47\",\"welcomePage.buttonBackground\":\"#373e47\",\"welcomePage.buttonHoverBackground\":\"#444c56\"},\"displayName\":\"GitHub Dark Dimmed\",\"name\":\"github-dark-dimmed\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#768390\"}},{\"scope\":[\"constant.other.placeholder\",\"constant.character\"],\"settings\":{\"foreground\":\"#f47067\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\",\"entity\"],\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":[\"entity.name\",\"meta.export.default\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#f69d50\"}},{\"scope\":[\"variable.parameter.function\",\"meta.jsx.children\",\"meta.block\",\"meta.tag.attributes\",\"entity.name.constant\",\"meta.object.member\",\"meta.embedded.expression\"],\"settings\":{\"foreground\":\"#adbac7\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#dcbdfb\"}},{\"scope\":[\"entity.name.tag\",\"support.class.component\"],\"settings\":{\"foreground\":\"#8ddb8c\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#f47067\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#f47067\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#adbac7\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#96d0ff\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#f69d50\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#adbac7\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ff938a\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ff938a\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ff938a\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ff938a\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#f47067\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#cdd9e5\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#ff938a\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#96d0ff\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#96d0ff\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#8ddb8c\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#8ddb8c\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#f69d50\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#6cb6ff\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#8ddb8c\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#adbac7\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#adbac7\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#5d0f12\",\"foreground\":\"#ff938a\"}},{\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#f47067\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#113417\",\"foreground\":\"#8ddb8c\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#682d0f\",\"foreground\":\"#f69d50\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#6cb6ff\",\"foreground\":\"#2d333b\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#dcbdfb\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#6cb6ff\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#768390\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#ff938a\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"foreground\":\"#96d0ff\"}}],\"type\":\"dark\"}"))
|
|
2
|
+
export default Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#ec775c\",\"activityBar.background\":\"#22272e\",\"activityBar.border\":\"#444c56\",\"activityBar.foreground\":\"#adbac7\",\"activityBar.inactiveForeground\":\"#768390\",\"activityBarBadge.background\":\"#316dca\",\"activityBarBadge.foreground\":\"#cdd9e5\",\"badge.background\":\"#316dca\",\"badge.foreground\":\"#cdd9e5\",\"breadcrumb.activeSelectionForeground\":\"#768390\",\"breadcrumb.focusForeground\":\"#adbac7\",\"breadcrumb.foreground\":\"#768390\",\"breadcrumbPicker.background\":\"#2d333b\",\"button.background\":\"#347d39\",\"button.foreground\":\"#ffffff\",\"button.hoverBackground\":\"#46954a\",\"button.secondaryBackground\":\"#3d444d\",\"button.secondaryForeground\":\"#adbac7\",\"button.secondaryHoverBackground\":\"#444c56\",\"checkbox.background\":\"#2d333b\",\"checkbox.border\":\"#444c56\",\"debugConsole.errorForeground\":\"#ff938a\",\"debugConsole.infoForeground\":\"#768390\",\"debugConsole.sourceForeground\":\"#daaa3f\",\"debugConsole.warningForeground\":\"#c69026\",\"debugConsoleInputIcon.foreground\":\"#b083f0\",\"debugIcon.breakpointForeground\":\"#e5534b\",\"debugTokenExpression.boolean\":\"#6bc46d\",\"debugTokenExpression.error\":\"#ff938a\",\"debugTokenExpression.name\":\"#6cb6ff\",\"debugTokenExpression.number\":\"#6bc46d\",\"debugTokenExpression.string\":\"#96d0ff\",\"debugTokenExpression.value\":\"#96d0ff\",\"debugToolBar.background\":\"#2d333b\",\"descriptionForeground\":\"#768390\",\"diffEditor.insertedLineBackground\":\"#347d3926\",\"diffEditor.insertedTextBackground\":\"#57ab5a4d\",\"diffEditor.removedLineBackground\":\"#c93c3726\",\"diffEditor.removedTextBackground\":\"#f470674d\",\"dropdown.background\":\"#2d333b\",\"dropdown.border\":\"#444c56\",\"dropdown.foreground\":\"#adbac7\",\"dropdown.listBackground\":\"#2d333b\",\"editor.background\":\"#22272e\",\"editor.findMatchBackground\":\"#966600\",\"editor.findMatchHighlightBackground\":\"#eac55f80\",\"editor.focusedStackFrameHighlightBackground\":\"#46954a66\",\"editor.foldBackground\":\"#636e7b1a\",\"editor.foreground\":\"#adbac7\",\"editor.lineHighlightBackground\":\"#636e7b1a\",\"editor.linkedEditingBackground\":\"#539bf512\",\"editor.selectionHighlightBackground\":\"#57ab5a40\",\"editor.stackFrameHighlightBackground\":\"#ae7c1466\",\"editor.wordHighlightBackground\":\"#636e7b80\",\"editor.wordHighlightBorder\":\"#636e7b99\",\"editor.wordHighlightStrongBackground\":\"#636e7b4d\",\"editor.wordHighlightStrongBorder\":\"#636e7b99\",\"editorBracketHighlight.foreground1\":\"#6cb6ff\",\"editorBracketHighlight.foreground2\":\"#6bc46d\",\"editorBracketHighlight.foreground3\":\"#daaa3f\",\"editorBracketHighlight.foreground4\":\"#ff938a\",\"editorBracketHighlight.foreground5\":\"#fc8dc7\",\"editorBracketHighlight.foreground6\":\"#dcbdfb\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#768390\",\"editorBracketMatch.background\":\"#57ab5a40\",\"editorBracketMatch.border\":\"#57ab5a99\",\"editorCursor.foreground\":\"#539bf5\",\"editorGroup.border\":\"#444c56\",\"editorGroupHeader.tabsBackground\":\"#1c2128\",\"editorGroupHeader.tabsBorder\":\"#444c56\",\"editorGutter.addedBackground\":\"#46954a66\",\"editorGutter.deletedBackground\":\"#e5534b66\",\"editorGutter.modifiedBackground\":\"#ae7c1466\",\"editorIndentGuide.activeBackground\":\"#adbac73d\",\"editorIndentGuide.background\":\"#adbac71f\",\"editorInlayHint.background\":\"#76839033\",\"editorInlayHint.foreground\":\"#768390\",\"editorInlayHint.paramBackground\":\"#76839033\",\"editorInlayHint.paramForeground\":\"#768390\",\"editorInlayHint.typeBackground\":\"#76839033\",\"editorInlayHint.typeForeground\":\"#768390\",\"editorLineNumber.activeForeground\":\"#adbac7\",\"editorLineNumber.foreground\":\"#636e7b\",\"editorOverviewRuler.border\":\"#1c2128\",\"editorWhitespace.foreground\":\"#545d68\",\"editorWidget.background\":\"#2d333b\",\"errorForeground\":\"#e5534b\",\"focusBorder\":\"#316dca\",\"foreground\":\"#adbac7\",\"gitDecoration.addedResourceForeground\":\"#57ab5a\",\"gitDecoration.conflictingResourceForeground\":\"#cc6b2c\",\"gitDecoration.deletedResourceForeground\":\"#e5534b\",\"gitDecoration.ignoredResourceForeground\":\"#636e7b\",\"gitDecoration.modifiedResourceForeground\":\"#c69026\",\"gitDecoration.submoduleResourceForeground\":\"#768390\",\"gitDecoration.untrackedResourceForeground\":\"#57ab5a\",\"icon.foreground\":\"#768390\",\"input.background\":\"#22272e\",\"input.border\":\"#444c56\",\"input.foreground\":\"#adbac7\",\"input.placeholderForeground\":\"#636e7b\",\"keybindingLabel.foreground\":\"#adbac7\",\"list.activeSelectionBackground\":\"#636e7b66\",\"list.activeSelectionForeground\":\"#adbac7\",\"list.focusBackground\":\"#4184e426\",\"list.focusForeground\":\"#adbac7\",\"list.highlightForeground\":\"#539bf5\",\"list.hoverBackground\":\"#636e7b1a\",\"list.hoverForeground\":\"#adbac7\",\"list.inactiveFocusBackground\":\"#4184e426\",\"list.inactiveSelectionBackground\":\"#636e7b66\",\"list.inactiveSelectionForeground\":\"#adbac7\",\"minimapSlider.activeBackground\":\"#76839047\",\"minimapSlider.background\":\"#76839033\",\"minimapSlider.hoverBackground\":\"#7683903d\",\"notificationCenterHeader.background\":\"#2d333b\",\"notificationCenterHeader.foreground\":\"#768390\",\"notifications.background\":\"#2d333b\",\"notifications.border\":\"#444c56\",\"notifications.foreground\":\"#adbac7\",\"notificationsErrorIcon.foreground\":\"#e5534b\",\"notificationsInfoIcon.foreground\":\"#539bf5\",\"notificationsWarningIcon.foreground\":\"#c69026\",\"panel.background\":\"#1c2128\",\"panel.border\":\"#444c56\",\"panelInput.border\":\"#444c56\",\"panelTitle.activeBorder\":\"#ec775c\",\"panelTitle.activeForeground\":\"#adbac7\",\"panelTitle.inactiveForeground\":\"#768390\",\"peekViewEditor.background\":\"#636e7b1a\",\"peekViewEditor.matchHighlightBackground\":\"#ae7c1466\",\"peekViewResult.background\":\"#22272e\",\"peekViewResult.matchHighlightBackground\":\"#ae7c1466\",\"pickerGroup.border\":\"#444c56\",\"pickerGroup.foreground\":\"#768390\",\"progressBar.background\":\"#316dca\",\"quickInput.background\":\"#2d333b\",\"quickInput.foreground\":\"#adbac7\",\"scrollbar.shadow\":\"#545d6833\",\"scrollbarSlider.activeBackground\":\"#76839047\",\"scrollbarSlider.background\":\"#76839033\",\"scrollbarSlider.hoverBackground\":\"#7683903d\",\"settings.headerForeground\":\"#adbac7\",\"settings.modifiedItemIndicator\":\"#ae7c1466\",\"sideBar.background\":\"#1c2128\",\"sideBar.border\":\"#444c56\",\"sideBar.foreground\":\"#adbac7\",\"sideBarSectionHeader.background\":\"#1c2128\",\"sideBarSectionHeader.border\":\"#444c56\",\"sideBarSectionHeader.foreground\":\"#adbac7\",\"sideBarTitle.foreground\":\"#adbac7\",\"statusBar.background\":\"#22272e\",\"statusBar.border\":\"#444c56\",\"statusBar.debuggingBackground\":\"#c93c37\",\"statusBar.debuggingForeground\":\"#cdd9e5\",\"statusBar.focusBorder\":\"#316dca80\",\"statusBar.foreground\":\"#768390\",\"statusBar.noFolderBackground\":\"#22272e\",\"statusBarItem.activeBackground\":\"#adbac71f\",\"statusBarItem.focusBorder\":\"#316dca\",\"statusBarItem.hoverBackground\":\"#adbac714\",\"statusBarItem.prominentBackground\":\"#636e7b66\",\"statusBarItem.remoteBackground\":\"#444c56\",\"statusBarItem.remoteForeground\":\"#adbac7\",\"symbolIcon.arrayForeground\":\"#e0823d\",\"symbolIcon.booleanForeground\":\"#539bf5\",\"symbolIcon.classForeground\":\"#e0823d\",\"symbolIcon.colorForeground\":\"#6cb6ff\",\"symbolIcon.constantForeground\":[\"#b4f1b4\",\"#8ddb8c\",\"#6bc46d\",\"#57ab5a\",\"#46954a\",\"#347d39\",\"#2b6a30\",\"#245829\",\"#1b4721\",\"#113417\"],\"symbolIcon.constructorForeground\":\"#dcbdfb\",\"symbolIcon.enumeratorForeground\":\"#e0823d\",\"symbolIcon.enumeratorMemberForeground\":\"#539bf5\",\"symbolIcon.eventForeground\":\"#636e7b\",\"symbolIcon.fieldForeground\":\"#e0823d\",\"symbolIcon.fileForeground\":\"#c69026\",\"symbolIcon.folderForeground\":\"#c69026\",\"symbolIcon.functionForeground\":\"#b083f0\",\"symbolIcon.interfaceForeground\":\"#e0823d\",\"symbolIcon.keyForeground\":\"#539bf5\",\"symbolIcon.keywordForeground\":\"#f47067\",\"symbolIcon.methodForeground\":\"#b083f0\",\"symbolIcon.moduleForeground\":\"#f47067\",\"symbolIcon.namespaceForeground\":\"#f47067\",\"symbolIcon.nullForeground\":\"#539bf5\",\"symbolIcon.numberForeground\":\"#57ab5a\",\"symbolIcon.objectForeground\":\"#e0823d\",\"symbolIcon.operatorForeground\":\"#6cb6ff\",\"symbolIcon.packageForeground\":\"#e0823d\",\"symbolIcon.propertyForeground\":\"#e0823d\",\"symbolIcon.referenceForeground\":\"#539bf5\",\"symbolIcon.snippetForeground\":\"#539bf5\",\"symbolIcon.stringForeground\":\"#6cb6ff\",\"symbolIcon.structForeground\":\"#e0823d\",\"symbolIcon.textForeground\":\"#6cb6ff\",\"symbolIcon.typeParameterForeground\":\"#6cb6ff\",\"symbolIcon.unitForeground\":\"#539bf5\",\"symbolIcon.variableForeground\":\"#e0823d\",\"tab.activeBackground\":\"#22272e\",\"tab.activeBorder\":\"#22272e\",\"tab.activeBorderTop\":\"#ec775c\",\"tab.activeForeground\":\"#adbac7\",\"tab.border\":\"#444c56\",\"tab.hoverBackground\":\"#22272e\",\"tab.inactiveBackground\":\"#1c2128\",\"tab.inactiveForeground\":\"#768390\",\"tab.unfocusedActiveBorder\":\"#22272e\",\"tab.unfocusedActiveBorderTop\":\"#444c56\",\"tab.unfocusedHoverBackground\":\"#636e7b1a\",\"terminal.ansiBlack\":\"#545d68\",\"terminal.ansiBlue\":\"#539bf5\",\"terminal.ansiBrightBlack\":\"#636e7b\",\"terminal.ansiBrightBlue\":\"#6cb6ff\",\"terminal.ansiBrightCyan\":\"#56d4dd\",\"terminal.ansiBrightGreen\":\"#6bc46d\",\"terminal.ansiBrightMagenta\":\"#dcbdfb\",\"terminal.ansiBrightRed\":\"#ff938a\",\"terminal.ansiBrightWhite\":\"#cdd9e5\",\"terminal.ansiBrightYellow\":\"#daaa3f\",\"terminal.ansiCyan\":\"#39c5cf\",\"terminal.ansiGreen\":\"#57ab5a\",\"terminal.ansiMagenta\":\"#b083f0\",\"terminal.ansiRed\":\"#f47067\",\"terminal.ansiWhite\":\"#909dab\",\"terminal.ansiYellow\":\"#c69026\",\"terminal.foreground\":\"#adbac7\",\"textBlockQuote.background\":\"#1c2128\",\"textBlockQuote.border\":\"#444c56\",\"textCodeBlock.background\":\"#636e7b66\",\"textLink.activeForeground\":\"#539bf5\",\"textLink.foreground\":\"#539bf5\",\"textPreformat.background\":\"#636e7b66\",\"textPreformat.foreground\":\"#768390\",\"textSeparator.foreground\":\"#373e47\",\"titleBar.activeBackground\":\"#22272e\",\"titleBar.activeForeground\":\"#768390\",\"titleBar.border\":\"#444c56\",\"titleBar.inactiveBackground\":\"#1c2128\",\"titleBar.inactiveForeground\":\"#768390\",\"tree.indentGuidesStroke\":\"#373e47\",\"welcomePage.buttonBackground\":\"#373e47\",\"welcomePage.buttonHoverBackground\":\"#444c56\"},\"displayName\":\"GitHub Dark Dimmed\",\"name\":\"github-dark-dimmed\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#768390\"}},{\"scope\":[\"constant.other.placeholder\",\"constant.character\"],\"settings\":{\"foreground\":\"#f47067\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\",\"entity\"],\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":[\"entity.name\",\"meta.export.default\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#f69d50\"}},{\"scope\":[\"variable.parameter.function\",\"meta.jsx.children\",\"meta.block\",\"meta.tag.attributes\",\"entity.name.constant\",\"meta.object.member\",\"meta.embedded.expression\"],\"settings\":{\"foreground\":\"#adbac7\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#dcbdfb\"}},{\"scope\":[\"entity.name.tag\",\"support.class.component\"],\"settings\":{\"foreground\":\"#8ddb8c\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#f47067\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#f47067\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#adbac7\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#96d0ff\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#f69d50\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#adbac7\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ff938a\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ff938a\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ff938a\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ff938a\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#f47067\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#cdd9e5\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#ff938a\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#96d0ff\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#96d0ff\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#8ddb8c\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#8ddb8c\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#f69d50\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#6cb6ff\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#8ddb8c\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#adbac7\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#adbac7\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#5d0f12\",\"foreground\":\"#ff938a\"}},{\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#f47067\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#113417\",\"foreground\":\"#8ddb8c\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#682d0f\",\"foreground\":\"#f69d50\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#6cb6ff\",\"foreground\":\"#2d333b\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#dcbdfb\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#6cb6ff\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#768390\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#ff938a\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"foreground\":\"#96d0ff\"}}],\"type\":\"dark\"}"))
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/* Theme: github-dark-high-contrast */
|
|
2
|
-
export default Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#ff967d\",\"activityBar.background\":\"#0a0c10\",\"activityBar.border\":\"#7a828e\",\"activityBar.foreground\":\"#f0f3f6\",\"activityBar.inactiveForeground\":\"#f0f3f6\",\"activityBarBadge.background\":\"#409eff\",\"activityBarBadge.foreground\":\"#0a0c10\",\"badge.background\":\"#409eff\",\"badge.foreground\":\"#0a0c10\",\"breadcrumb.activeSelectionForeground\":\"#f0f3f6\",\"breadcrumb.focusForeground\":\"#f0f3f6\",\"breadcrumb.foreground\":\"#f0f3f6\",\"breadcrumbPicker.background\":\"#272b33\",\"button.background\":\"#09b43a\",\"button.foreground\":\"#0a0c10\",\"button.hoverBackground\":\"#26cd4d\",\"button.secondaryBackground\":\"#4c525d\",\"button.secondaryForeground\":\"#f0f3f6\",\"button.secondaryHoverBackground\":\"#525964\",\"checkbox.background\":\"#272b33\",\"checkbox.border\":\"#7a828e\",\"debugConsole.errorForeground\":\"#ffb1af\",\"debugConsole.infoForeground\":\"#bdc4cc\",\"debugConsole.sourceForeground\":\"#f7c843\",\"debugConsole.warningForeground\":\"#f0b72f\",\"debugConsoleInputIcon.foreground\":\"#cb9eff\",\"debugIcon.breakpointForeground\":\"#ff6a69\",\"debugTokenExpression.boolean\":\"#4ae168\",\"debugTokenExpression.error\":\"#ffb1af\",\"debugTokenExpression.name\":\"#91cbff\",\"debugTokenExpression.number\":\"#4ae168\",\"debugTokenExpression.string\":\"#addcff\",\"debugTokenExpression.value\":\"#addcff\",\"debugToolBar.background\":\"#272b33\",\"descriptionForeground\":\"#f0f3f6\",\"diffEditor.insertedLineBackground\":\"#09b43a26\",\"diffEditor.insertedTextBackground\":\"#26cd4d4d\",\"diffEditor.removedLineBackground\":\"#ff6a6926\",\"diffEditor.removedTextBackground\":\"#ff94924d\",\"dropdown.background\":\"#272b33\",\"dropdown.border\":\"#7a828e\",\"dropdown.foreground\":\"#f0f3f6\",\"dropdown.listBackground\":\"#272b33\",\"editor.background\":\"#0a0c10\",\"editor.findMatchBackground\":\"#e09b13\",\"editor.findMatchHighlightBackground\":\"#fbd66980\",\"editor.focusedStackFrameHighlightBackground\":\"#09b43a\",\"editor.foldBackground\":\"#9ea7b31a\",\"editor.foreground\":\"#f0f3f6\",\"editor.inactiveSelectionBackground\":\"#9ea7b3\",\"editor.lineHighlightBackground\":\"#9ea7b31a\",\"editor.lineHighlightBorder\":\"#71b7ff\",\"editor.linkedEditingBackground\":\"#71b7ff12\",\"editor.selectionBackground\":\"#ffffff\",\"editor.selectionForeground\":\"#0a0c10\",\"editor.selectionHighlightBackground\":\"#26cd4d40\",\"editor.stackFrameHighlightBackground\":\"#e09b13\",\"editor.wordHighlightBackground\":\"#9ea7b380\",\"editor.wordHighlightBorder\":\"#9ea7b399\",\"editor.wordHighlightStrongBackground\":\"#9ea7b34d\",\"editor.wordHighlightStrongBorder\":\"#9ea7b399\",\"editorBracketHighlight.foreground1\":\"#91cbff\",\"editorBracketHighlight.foreground2\":\"#4ae168\",\"editorBracketHighlight.foreground3\":\"#f7c843\",\"editorBracketHighlight.foreground4\":\"#ffb1af\",\"editorBracketHighlight.foreground5\":\"#ffadd4\",\"editorBracketHighlight.foreground6\":\"#dbb7ff\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#f0f3f6\",\"editorBracketMatch.background\":\"#26cd4d40\",\"editorBracketMatch.border\":\"#26cd4d99\",\"editorCursor.foreground\":\"#71b7ff\",\"editorGroup.border\":\"#7a828e\",\"editorGroupHeader.tabsBackground\":\"#010409\",\"editorGroupHeader.tabsBorder\":\"#7a828e\",\"editorGutter.addedBackground\":\"#09b43a\",\"editorGutter.deletedBackground\":\"#ff6a69\",\"editorGutter.modifiedBackground\":\"#e09b13\",\"editorIndentGuide.activeBackground\":\"#f0f3f63d\",\"editorIndentGuide.background\":\"#f0f3f61f\",\"editorInlayHint.background\":\"#bdc4cc33\",\"editorInlayHint.foreground\":\"#f0f3f6\",\"editorInlayHint.paramBackground\":\"#bdc4cc33\",\"editorInlayHint.paramForeground\":\"#f0f3f6\",\"editorInlayHint.typeBackground\":\"#bdc4cc33\",\"editorInlayHint.typeForeground\":\"#f0f3f6\",\"editorLineNumber.activeForeground\":\"#f0f3f6\",\"editorLineNumber.foreground\":\"#9ea7b3\",\"editorOverviewRuler.border\":\"#010409\",\"editorWhitespace.foreground\":\"#7a828e\",\"editorWidget.background\":\"#272b33\",\"errorForeground\":\"#ff6a69\",\"focusBorder\":\"#409eff\",\"foreground\":\"#f0f3f6\",\"gitDecoration.addedResourceForeground\":\"#26cd4d\",\"gitDecoration.conflictingResourceForeground\":\"#e7811d\",\"gitDecoration.deletedResourceForeground\":\"#ff6a69\",\"gitDecoration.ignoredResourceForeground\":\"#9ea7b3\",\"gitDecoration.modifiedResourceForeground\":\"#f0b72f\",\"gitDecoration.submoduleResourceForeground\":\"#f0f3f6\",\"gitDecoration.untrackedResourceForeground\":\"#26cd4d\",\"icon.foreground\":\"#f0f3f6\",\"input.background\":\"#0a0c10\",\"input.border\":\"#7a828e\",\"input.foreground\":\"#f0f3f6\",\"input.placeholderForeground\":\"#9ea7b3\",\"keybindingLabel.foreground\":\"#f0f3f6\",\"list.activeSelectionBackground\":\"#9ea7b366\",\"list.activeSelectionForeground\":\"#f0f3f6\",\"list.focusBackground\":\"#409eff26\",\"list.focusForeground\":\"#f0f3f6\",\"list.highlightForeground\":\"#71b7ff\",\"list.hoverBackground\":\"#9ea7b31a\",\"list.hoverForeground\":\"#f0f3f6\",\"list.inactiveFocusBackground\":\"#409eff26\",\"list.inactiveSelectionBackground\":\"#9ea7b366\",\"list.inactiveSelectionForeground\":\"#f0f3f6\",\"minimapSlider.activeBackground\":\"#bdc4cc47\",\"minimapSlider.background\":\"#bdc4cc33\",\"minimapSlider.hoverBackground\":\"#bdc4cc3d\",\"notificationCenterHeader.background\":\"#272b33\",\"notificationCenterHeader.foreground\":\"#f0f3f6\",\"notifications.background\":\"#272b33\",\"notifications.border\":\"#7a828e\",\"notifications.foreground\":\"#f0f3f6\",\"notificationsErrorIcon.foreground\":\"#ff6a69\",\"notificationsInfoIcon.foreground\":\"#71b7ff\",\"notificationsWarningIcon.foreground\":\"#f0b72f\",\"panel.background\":\"#010409\",\"panel.border\":\"#7a828e\",\"panelInput.border\":\"#7a828e\",\"panelTitle.activeBorder\":\"#ff967d\",\"panelTitle.activeForeground\":\"#f0f3f6\",\"panelTitle.inactiveForeground\":\"#f0f3f6\",\"peekViewEditor.background\":\"#9ea7b31a\",\"peekViewEditor.matchHighlightBackground\":\"#e09b13\",\"peekViewResult.background\":\"#0a0c10\",\"peekViewResult.matchHighlightBackground\":\"#e09b13\",\"pickerGroup.border\":\"#7a828e\",\"pickerGroup.foreground\":\"#f0f3f6\",\"progressBar.background\":\"#409eff\",\"quickInput.background\":\"#272b33\",\"quickInput.foreground\":\"#f0f3f6\",\"scrollbar.shadow\":\"#7a828e33\",\"scrollbarSlider.activeBackground\":\"#bdc4cc47\",\"scrollbarSlider.background\":\"#bdc4cc33\",\"scrollbarSlider.hoverBackground\":\"#bdc4cc3d\",\"settings.headerForeground\":\"#f0f3f6\",\"settings.modifiedItemIndicator\":\"#e09b13\",\"sideBar.background\":\"#010409\",\"sideBar.border\":\"#7a828e\",\"sideBar.foreground\":\"#f0f3f6\",\"sideBarSectionHeader.background\":\"#010409\",\"sideBarSectionHeader.border\":\"#7a828e\",\"sideBarSectionHeader.foreground\":\"#f0f3f6\",\"sideBarTitle.foreground\":\"#f0f3f6\",\"statusBar.background\":\"#0a0c10\",\"statusBar.border\":\"#7a828e\",\"statusBar.debuggingBackground\":\"#ff6a69\",\"statusBar.debuggingForeground\":\"#0a0c10\",\"statusBar.focusBorder\":\"#409eff80\",\"statusBar.foreground\":\"#f0f3f6\",\"statusBar.noFolderBackground\":\"#0a0c10\",\"statusBarItem.activeBackground\":\"#f0f3f61f\",\"statusBarItem.focusBorder\":\"#409eff\",\"statusBarItem.hoverBackground\":\"#f0f3f614\",\"statusBarItem.prominentBackground\":\"#9ea7b366\",\"statusBarItem.remoteBackground\":\"#525964\",\"statusBarItem.remoteForeground\":\"#f0f3f6\",\"symbolIcon.arrayForeground\":\"#fe9a2d\",\"symbolIcon.booleanForeground\":\"#71b7ff\",\"symbolIcon.classForeground\":\"#fe9a2d\",\"symbolIcon.colorForeground\":\"#91cbff\",\"symbolIcon.constantForeground\":[\"#acf7b6\",\"#72f088\",\"#4ae168\",\"#26cd4d\",\"#09b43a\",\"#09b43a\",\"#02a232\",\"#008c2c\",\"#007728\",\"#006222\"],\"symbolIcon.constructorForeground\":\"#dbb7ff\",\"symbolIcon.enumeratorForeground\":\"#fe9a2d\",\"symbolIcon.enumeratorMemberForeground\":\"#71b7ff\",\"symbolIcon.eventForeground\":\"#9ea7b3\",\"symbolIcon.fieldForeground\":\"#fe9a2d\",\"symbolIcon.fileForeground\":\"#f0b72f\",\"symbolIcon.folderForeground\":\"#f0b72f\",\"symbolIcon.functionForeground\":\"#cb9eff\",\"symbolIcon.interfaceForeground\":\"#fe9a2d\",\"symbolIcon.keyForeground\":\"#71b7ff\",\"symbolIcon.keywordForeground\":\"#ff9492\",\"symbolIcon.methodForeground\":\"#cb9eff\",\"symbolIcon.moduleForeground\":\"#ff9492\",\"symbolIcon.namespaceForeground\":\"#ff9492\",\"symbolIcon.nullForeground\":\"#71b7ff\",\"symbolIcon.numberForeground\":\"#26cd4d\",\"symbolIcon.objectForeground\":\"#fe9a2d\",\"symbolIcon.operatorForeground\":\"#91cbff\",\"symbolIcon.packageForeground\":\"#fe9a2d\",\"symbolIcon.propertyForeground\":\"#fe9a2d\",\"symbolIcon.referenceForeground\":\"#71b7ff\",\"symbolIcon.snippetForeground\":\"#71b7ff\",\"symbolIcon.stringForeground\":\"#91cbff\",\"symbolIcon.structForeground\":\"#fe9a2d\",\"symbolIcon.textForeground\":\"#91cbff\",\"symbolIcon.typeParameterForeground\":\"#91cbff\",\"symbolIcon.unitForeground\":\"#71b7ff\",\"symbolIcon.variableForeground\":\"#fe9a2d\",\"tab.activeBackground\":\"#0a0c10\",\"tab.activeBorder\":\"#0a0c10\",\"tab.activeBorderTop\":\"#ff967d\",\"tab.activeForeground\":\"#f0f3f6\",\"tab.border\":\"#7a828e\",\"tab.hoverBackground\":\"#0a0c10\",\"tab.inactiveBackground\":\"#010409\",\"tab.inactiveForeground\":\"#f0f3f6\",\"tab.unfocusedActiveBorder\":\"#0a0c10\",\"tab.unfocusedActiveBorderTop\":\"#7a828e\",\"tab.unfocusedHoverBackground\":\"#9ea7b31a\",\"terminal.ansiBlack\":\"#7a828e\",\"terminal.ansiBlue\":\"#71b7ff\",\"terminal.ansiBrightBlack\":\"#9ea7b3\",\"terminal.ansiBrightBlue\":\"#91cbff\",\"terminal.ansiBrightCyan\":\"#56d4dd\",\"terminal.ansiBrightGreen\":\"#4ae168\",\"terminal.ansiBrightMagenta\":\"#dbb7ff\",\"terminal.ansiBrightRed\":\"#ffb1af\",\"terminal.ansiBrightWhite\":\"#ffffff\",\"terminal.ansiBrightYellow\":\"#f7c843\",\"terminal.ansiCyan\":\"#39c5cf\",\"terminal.ansiGreen\":\"#26cd4d\",\"terminal.ansiMagenta\":\"#cb9eff\",\"terminal.ansiRed\":\"#ff9492\",\"terminal.ansiWhite\":\"#d9dee3\",\"terminal.ansiYellow\":\"#f0b72f\",\"terminal.foreground\":\"#f0f3f6\",\"textBlockQuote.background\":\"#010409\",\"textBlockQuote.border\":\"#7a828e\",\"textCodeBlock.background\":\"#9ea7b366\",\"textLink.activeForeground\":\"#71b7ff\",\"textLink.foreground\":\"#71b7ff\",\"textPreformat.foreground\":\"#f0f3f6\",\"textSeparator.foreground\":\"#7a828e\",\"titleBar.activeBackground\":\"#0a0c10\",\"titleBar.activeForeground\":\"#f0f3f6\",\"titleBar.border\":\"#7a828e\",\"titleBar.inactiveBackground\":\"#010409\",\"titleBar.inactiveForeground\":\"#f0f3f6\",\"tree.indentGuidesStroke\":\"#7a828e\",\"welcomePage.buttonBackground\":\"#272b33\",\"welcomePage.buttonHoverBackground\":\"#525964\"},\"displayName\":\"GitHub Dark High Contrast\",\"name\":\"github-dark-high-contrast\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#bdc4cc\"}},{\"scope\":[\"constant.other.placeholder\",\"constant.character\"],\"settings\":{\"foreground\":\"#ff9492\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\",\"entity\"],\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":[\"entity.name\",\"meta.export.default\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#ffb757\"}},{\"scope\":[\"variable.parameter.function\",\"meta.jsx.children\",\"meta.block\",\"meta.tag.attributes\",\"entity.name.constant\",\"meta.object.member\",\"meta.embedded.expression\"],\"settings\":{\"foreground\":\"#f0f3f6\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#dbb7ff\"}},{\"scope\":[\"entity.name.tag\",\"support.class.component\"],\"settings\":{\"foreground\":\"#72f088\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#ff9492\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#ff9492\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#f0f3f6\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#addcff\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#ffb757\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#f0f3f6\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffb1af\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffb1af\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffb1af\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffb1af\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#ff9492\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#ffffff\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#ffb1af\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#addcff\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#addcff\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#72f088\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#72f088\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#ffb757\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#91cbff\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#72f088\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#f0f3f6\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#f0f3f6\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#ad0116\",\"foreground\":\"#ffb1af\"}},{\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#ff9492\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#006222\",\"foreground\":\"#72f088\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#a74c00\",\"foreground\":\"#ffb757\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#91cbff\",\"foreground\":\"#272b33\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#dbb7ff\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#91cbff\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#bdc4cc\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#ffb1af\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"foreground\":\"#addcff\"}}],\"type\":\"dark\"}"))
|
|
2
|
+
export default Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#ff967d\",\"activityBar.background\":\"#0a0c10\",\"activityBar.border\":\"#7a828e\",\"activityBar.foreground\":\"#f0f3f6\",\"activityBar.inactiveForeground\":\"#f0f3f6\",\"activityBarBadge.background\":\"#409eff\",\"activityBarBadge.foreground\":\"#0a0c10\",\"badge.background\":\"#409eff\",\"badge.foreground\":\"#0a0c10\",\"breadcrumb.activeSelectionForeground\":\"#f0f3f6\",\"breadcrumb.focusForeground\":\"#f0f3f6\",\"breadcrumb.foreground\":\"#f0f3f6\",\"breadcrumbPicker.background\":\"#272b33\",\"button.background\":\"#09b43a\",\"button.foreground\":\"#0a0c10\",\"button.hoverBackground\":\"#26cd4d\",\"button.secondaryBackground\":\"#4c525d\",\"button.secondaryForeground\":\"#f0f3f6\",\"button.secondaryHoverBackground\":\"#525964\",\"checkbox.background\":\"#272b33\",\"checkbox.border\":\"#7a828e\",\"debugConsole.errorForeground\":\"#ffb1af\",\"debugConsole.infoForeground\":\"#bdc4cc\",\"debugConsole.sourceForeground\":\"#f7c843\",\"debugConsole.warningForeground\":\"#f0b72f\",\"debugConsoleInputIcon.foreground\":\"#cb9eff\",\"debugIcon.breakpointForeground\":\"#ff6a69\",\"debugTokenExpression.boolean\":\"#4ae168\",\"debugTokenExpression.error\":\"#ffb1af\",\"debugTokenExpression.name\":\"#91cbff\",\"debugTokenExpression.number\":\"#4ae168\",\"debugTokenExpression.string\":\"#addcff\",\"debugTokenExpression.value\":\"#addcff\",\"debugToolBar.background\":\"#272b33\",\"descriptionForeground\":\"#f0f3f6\",\"diffEditor.insertedLineBackground\":\"#09b43a26\",\"diffEditor.insertedTextBackground\":\"#26cd4d4d\",\"diffEditor.removedLineBackground\":\"#ff6a6926\",\"diffEditor.removedTextBackground\":\"#ff94924d\",\"dropdown.background\":\"#272b33\",\"dropdown.border\":\"#7a828e\",\"dropdown.foreground\":\"#f0f3f6\",\"dropdown.listBackground\":\"#272b33\",\"editor.background\":\"#0a0c10\",\"editor.findMatchBackground\":\"#e09b13\",\"editor.findMatchHighlightBackground\":\"#fbd66980\",\"editor.focusedStackFrameHighlightBackground\":\"#09b43a\",\"editor.foldBackground\":\"#9ea7b31a\",\"editor.foreground\":\"#f0f3f6\",\"editor.inactiveSelectionBackground\":\"#9ea7b3\",\"editor.lineHighlightBackground\":\"#9ea7b31a\",\"editor.lineHighlightBorder\":\"#71b7ff\",\"editor.linkedEditingBackground\":\"#71b7ff12\",\"editor.selectionBackground\":\"#ffffff\",\"editor.selectionForeground\":\"#0a0c10\",\"editor.selectionHighlightBackground\":\"#26cd4d40\",\"editor.stackFrameHighlightBackground\":\"#e09b13\",\"editor.wordHighlightBackground\":\"#9ea7b380\",\"editor.wordHighlightBorder\":\"#9ea7b399\",\"editor.wordHighlightStrongBackground\":\"#9ea7b34d\",\"editor.wordHighlightStrongBorder\":\"#9ea7b399\",\"editorBracketHighlight.foreground1\":\"#91cbff\",\"editorBracketHighlight.foreground2\":\"#4ae168\",\"editorBracketHighlight.foreground3\":\"#f7c843\",\"editorBracketHighlight.foreground4\":\"#ffb1af\",\"editorBracketHighlight.foreground5\":\"#ffadd4\",\"editorBracketHighlight.foreground6\":\"#dbb7ff\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#f0f3f6\",\"editorBracketMatch.background\":\"#26cd4d40\",\"editorBracketMatch.border\":\"#26cd4d99\",\"editorCursor.foreground\":\"#71b7ff\",\"editorGroup.border\":\"#7a828e\",\"editorGroupHeader.tabsBackground\":\"#010409\",\"editorGroupHeader.tabsBorder\":\"#7a828e\",\"editorGutter.addedBackground\":\"#09b43a\",\"editorGutter.deletedBackground\":\"#ff6a69\",\"editorGutter.modifiedBackground\":\"#e09b13\",\"editorIndentGuide.activeBackground\":\"#f0f3f63d\",\"editorIndentGuide.background\":\"#f0f3f61f\",\"editorInlayHint.background\":\"#bdc4cc33\",\"editorInlayHint.foreground\":\"#f0f3f6\",\"editorInlayHint.paramBackground\":\"#bdc4cc33\",\"editorInlayHint.paramForeground\":\"#f0f3f6\",\"editorInlayHint.typeBackground\":\"#bdc4cc33\",\"editorInlayHint.typeForeground\":\"#f0f3f6\",\"editorLineNumber.activeForeground\":\"#f0f3f6\",\"editorLineNumber.foreground\":\"#9ea7b3\",\"editorOverviewRuler.border\":\"#010409\",\"editorWhitespace.foreground\":\"#7a828e\",\"editorWidget.background\":\"#272b33\",\"errorForeground\":\"#ff6a69\",\"focusBorder\":\"#409eff\",\"foreground\":\"#f0f3f6\",\"gitDecoration.addedResourceForeground\":\"#26cd4d\",\"gitDecoration.conflictingResourceForeground\":\"#e7811d\",\"gitDecoration.deletedResourceForeground\":\"#ff6a69\",\"gitDecoration.ignoredResourceForeground\":\"#9ea7b3\",\"gitDecoration.modifiedResourceForeground\":\"#f0b72f\",\"gitDecoration.submoduleResourceForeground\":\"#f0f3f6\",\"gitDecoration.untrackedResourceForeground\":\"#26cd4d\",\"icon.foreground\":\"#f0f3f6\",\"input.background\":\"#0a0c10\",\"input.border\":\"#7a828e\",\"input.foreground\":\"#f0f3f6\",\"input.placeholderForeground\":\"#9ea7b3\",\"keybindingLabel.foreground\":\"#f0f3f6\",\"list.activeSelectionBackground\":\"#9ea7b366\",\"list.activeSelectionForeground\":\"#f0f3f6\",\"list.focusBackground\":\"#409eff26\",\"list.focusForeground\":\"#f0f3f6\",\"list.highlightForeground\":\"#71b7ff\",\"list.hoverBackground\":\"#9ea7b31a\",\"list.hoverForeground\":\"#f0f3f6\",\"list.inactiveFocusBackground\":\"#409eff26\",\"list.inactiveSelectionBackground\":\"#9ea7b366\",\"list.inactiveSelectionForeground\":\"#f0f3f6\",\"minimapSlider.activeBackground\":\"#bdc4cc47\",\"minimapSlider.background\":\"#bdc4cc33\",\"minimapSlider.hoverBackground\":\"#bdc4cc3d\",\"notificationCenterHeader.background\":\"#272b33\",\"notificationCenterHeader.foreground\":\"#f0f3f6\",\"notifications.background\":\"#272b33\",\"notifications.border\":\"#7a828e\",\"notifications.foreground\":\"#f0f3f6\",\"notificationsErrorIcon.foreground\":\"#ff6a69\",\"notificationsInfoIcon.foreground\":\"#71b7ff\",\"notificationsWarningIcon.foreground\":\"#f0b72f\",\"panel.background\":\"#010409\",\"panel.border\":\"#7a828e\",\"panelInput.border\":\"#7a828e\",\"panelTitle.activeBorder\":\"#ff967d\",\"panelTitle.activeForeground\":\"#f0f3f6\",\"panelTitle.inactiveForeground\":\"#f0f3f6\",\"peekViewEditor.background\":\"#9ea7b31a\",\"peekViewEditor.matchHighlightBackground\":\"#e09b13\",\"peekViewResult.background\":\"#0a0c10\",\"peekViewResult.matchHighlightBackground\":\"#e09b13\",\"pickerGroup.border\":\"#7a828e\",\"pickerGroup.foreground\":\"#f0f3f6\",\"progressBar.background\":\"#409eff\",\"quickInput.background\":\"#272b33\",\"quickInput.foreground\":\"#f0f3f6\",\"scrollbar.shadow\":\"#7a828e33\",\"scrollbarSlider.activeBackground\":\"#bdc4cc47\",\"scrollbarSlider.background\":\"#bdc4cc33\",\"scrollbarSlider.hoverBackground\":\"#bdc4cc3d\",\"settings.headerForeground\":\"#f0f3f6\",\"settings.modifiedItemIndicator\":\"#e09b13\",\"sideBar.background\":\"#010409\",\"sideBar.border\":\"#7a828e\",\"sideBar.foreground\":\"#f0f3f6\",\"sideBarSectionHeader.background\":\"#010409\",\"sideBarSectionHeader.border\":\"#7a828e\",\"sideBarSectionHeader.foreground\":\"#f0f3f6\",\"sideBarTitle.foreground\":\"#f0f3f6\",\"statusBar.background\":\"#0a0c10\",\"statusBar.border\":\"#7a828e\",\"statusBar.debuggingBackground\":\"#ff6a69\",\"statusBar.debuggingForeground\":\"#0a0c10\",\"statusBar.focusBorder\":\"#409eff80\",\"statusBar.foreground\":\"#f0f3f6\",\"statusBar.noFolderBackground\":\"#0a0c10\",\"statusBarItem.activeBackground\":\"#f0f3f61f\",\"statusBarItem.focusBorder\":\"#409eff\",\"statusBarItem.hoverBackground\":\"#f0f3f614\",\"statusBarItem.prominentBackground\":\"#9ea7b366\",\"statusBarItem.remoteBackground\":\"#525964\",\"statusBarItem.remoteForeground\":\"#f0f3f6\",\"symbolIcon.arrayForeground\":\"#fe9a2d\",\"symbolIcon.booleanForeground\":\"#71b7ff\",\"symbolIcon.classForeground\":\"#fe9a2d\",\"symbolIcon.colorForeground\":\"#91cbff\",\"symbolIcon.constantForeground\":[\"#acf7b6\",\"#72f088\",\"#4ae168\",\"#26cd4d\",\"#09b43a\",\"#09b43a\",\"#02a232\",\"#008c2c\",\"#007728\",\"#006222\"],\"symbolIcon.constructorForeground\":\"#dbb7ff\",\"symbolIcon.enumeratorForeground\":\"#fe9a2d\",\"symbolIcon.enumeratorMemberForeground\":\"#71b7ff\",\"symbolIcon.eventForeground\":\"#9ea7b3\",\"symbolIcon.fieldForeground\":\"#fe9a2d\",\"symbolIcon.fileForeground\":\"#f0b72f\",\"symbolIcon.folderForeground\":\"#f0b72f\",\"symbolIcon.functionForeground\":\"#cb9eff\",\"symbolIcon.interfaceForeground\":\"#fe9a2d\",\"symbolIcon.keyForeground\":\"#71b7ff\",\"symbolIcon.keywordForeground\":\"#ff9492\",\"symbolIcon.methodForeground\":\"#cb9eff\",\"symbolIcon.moduleForeground\":\"#ff9492\",\"symbolIcon.namespaceForeground\":\"#ff9492\",\"symbolIcon.nullForeground\":\"#71b7ff\",\"symbolIcon.numberForeground\":\"#26cd4d\",\"symbolIcon.objectForeground\":\"#fe9a2d\",\"symbolIcon.operatorForeground\":\"#91cbff\",\"symbolIcon.packageForeground\":\"#fe9a2d\",\"symbolIcon.propertyForeground\":\"#fe9a2d\",\"symbolIcon.referenceForeground\":\"#71b7ff\",\"symbolIcon.snippetForeground\":\"#71b7ff\",\"symbolIcon.stringForeground\":\"#91cbff\",\"symbolIcon.structForeground\":\"#fe9a2d\",\"symbolIcon.textForeground\":\"#91cbff\",\"symbolIcon.typeParameterForeground\":\"#91cbff\",\"symbolIcon.unitForeground\":\"#71b7ff\",\"symbolIcon.variableForeground\":\"#fe9a2d\",\"tab.activeBackground\":\"#0a0c10\",\"tab.activeBorder\":\"#0a0c10\",\"tab.activeBorderTop\":\"#ff967d\",\"tab.activeForeground\":\"#f0f3f6\",\"tab.border\":\"#7a828e\",\"tab.hoverBackground\":\"#0a0c10\",\"tab.inactiveBackground\":\"#010409\",\"tab.inactiveForeground\":\"#f0f3f6\",\"tab.unfocusedActiveBorder\":\"#0a0c10\",\"tab.unfocusedActiveBorderTop\":\"#7a828e\",\"tab.unfocusedHoverBackground\":\"#9ea7b31a\",\"terminal.ansiBlack\":\"#7a828e\",\"terminal.ansiBlue\":\"#71b7ff\",\"terminal.ansiBrightBlack\":\"#9ea7b3\",\"terminal.ansiBrightBlue\":\"#91cbff\",\"terminal.ansiBrightCyan\":\"#56d4dd\",\"terminal.ansiBrightGreen\":\"#4ae168\",\"terminal.ansiBrightMagenta\":\"#dbb7ff\",\"terminal.ansiBrightRed\":\"#ffb1af\",\"terminal.ansiBrightWhite\":\"#ffffff\",\"terminal.ansiBrightYellow\":\"#f7c843\",\"terminal.ansiCyan\":\"#39c5cf\",\"terminal.ansiGreen\":\"#26cd4d\",\"terminal.ansiMagenta\":\"#cb9eff\",\"terminal.ansiRed\":\"#ff9492\",\"terminal.ansiWhite\":\"#d9dee3\",\"terminal.ansiYellow\":\"#f0b72f\",\"terminal.foreground\":\"#f0f3f6\",\"textBlockQuote.background\":\"#010409\",\"textBlockQuote.border\":\"#7a828e\",\"textCodeBlock.background\":\"#9ea7b366\",\"textLink.activeForeground\":\"#71b7ff\",\"textLink.foreground\":\"#71b7ff\",\"textPreformat.background\":\"#9ea7b366\",\"textPreformat.foreground\":\"#f0f3f6\",\"textSeparator.foreground\":\"#7a828e\",\"titleBar.activeBackground\":\"#0a0c10\",\"titleBar.activeForeground\":\"#f0f3f6\",\"titleBar.border\":\"#7a828e\",\"titleBar.inactiveBackground\":\"#010409\",\"titleBar.inactiveForeground\":\"#f0f3f6\",\"tree.indentGuidesStroke\":\"#7a828e\",\"welcomePage.buttonBackground\":\"#272b33\",\"welcomePage.buttonHoverBackground\":\"#525964\"},\"displayName\":\"GitHub Dark High Contrast\",\"name\":\"github-dark-high-contrast\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#bdc4cc\"}},{\"scope\":[\"constant.other.placeholder\",\"constant.character\"],\"settings\":{\"foreground\":\"#ff9492\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\",\"entity\"],\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":[\"entity.name\",\"meta.export.default\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#ffb757\"}},{\"scope\":[\"variable.parameter.function\",\"meta.jsx.children\",\"meta.block\",\"meta.tag.attributes\",\"entity.name.constant\",\"meta.object.member\",\"meta.embedded.expression\"],\"settings\":{\"foreground\":\"#f0f3f6\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#dbb7ff\"}},{\"scope\":[\"entity.name.tag\",\"support.class.component\"],\"settings\":{\"foreground\":\"#72f088\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#ff9492\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#ff9492\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#f0f3f6\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#addcff\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#ffb757\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#f0f3f6\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffb1af\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffb1af\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffb1af\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffb1af\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#ff9492\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#ffffff\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#ffb1af\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#addcff\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#addcff\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#72f088\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#72f088\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#ffb757\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#91cbff\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#72f088\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#f0f3f6\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#f0f3f6\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#ad0116\",\"foreground\":\"#ffb1af\"}},{\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#ff9492\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#006222\",\"foreground\":\"#72f088\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#a74c00\",\"foreground\":\"#ffb757\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#91cbff\",\"foreground\":\"#272b33\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#dbb7ff\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#91cbff\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#bdc4cc\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#ffb1af\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"foreground\":\"#addcff\"}}],\"type\":\"dark\"}"))
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/* Theme: github-light-default */
|
|
2
|
-
export default Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#fd8c73\",\"activityBar.background\":\"#ffffff\",\"activityBar.border\":\"#d0d7de\",\"activityBar.foreground\":\"#1f2328\",\"activityBar.inactiveForeground\":\"#656d76\",\"activityBarBadge.background\":\"#0969da\",\"activityBarBadge.foreground\":\"#ffffff\",\"badge.background\":\"#0969da\",\"badge.foreground\":\"#ffffff\",\"breadcrumb.activeSelectionForeground\":\"#656d76\",\"breadcrumb.focusForeground\":\"#1f2328\",\"breadcrumb.foreground\":\"#656d76\",\"breadcrumbPicker.background\":\"#ffffff\",\"button.background\":\"#1f883d\",\"button.foreground\":\"#ffffff\",\"button.hoverBackground\":\"#1a7f37\",\"button.secondaryBackground\":\"#ebecf0\",\"button.secondaryForeground\":\"#24292f\",\"button.secondaryHoverBackground\":\"#f3f4f6\",\"checkbox.background\":\"#f6f8fa\",\"checkbox.border\":\"#d0d7de\",\"debugConsole.errorForeground\":\"#cf222e\",\"debugConsole.infoForeground\":\"#57606a\",\"debugConsole.sourceForeground\":\"#9a6700\",\"debugConsole.warningForeground\":\"#7d4e00\",\"debugConsoleInputIcon.foreground\":\"#6639ba\",\"debugIcon.breakpointForeground\":\"#cf222e\",\"debugTokenExpression.boolean\":\"#116329\",\"debugTokenExpression.error\":\"#a40e26\",\"debugTokenExpression.name\":\"#0550ae\",\"debugTokenExpression.number\":\"#116329\",\"debugTokenExpression.string\":\"#0a3069\",\"debugTokenExpression.value\":\"#0a3069\",\"debugToolBar.background\":\"#ffffff\",\"descriptionForeground\":\"#656d76\",\"diffEditor.insertedLineBackground\":\"#aceebb4d\",\"diffEditor.insertedTextBackground\":\"#6fdd8b80\",\"diffEditor.removedLineBackground\":\"#ffcecb4d\",\"diffEditor.removedTextBackground\":\"#ff818266\",\"dropdown.background\":\"#ffffff\",\"dropdown.border\":\"#d0d7de\",\"dropdown.foreground\":\"#1f2328\",\"dropdown.listBackground\":\"#ffffff\",\"editor.background\":\"#ffffff\",\"editor.findMatchBackground\":\"#bf8700\",\"editor.findMatchHighlightBackground\":\"#fae17d80\",\"editor.focusedStackFrameHighlightBackground\":\"#4ac26b66\",\"editor.foldBackground\":\"#6e77811a\",\"editor.foreground\":\"#1f2328\",\"editor.lineHighlightBackground\":\"#eaeef280\",\"editor.linkedEditingBackground\":\"#0969da12\",\"editor.selectionHighlightBackground\":\"#4ac26b40\",\"editor.stackFrameHighlightBackground\":\"#d4a72c66\",\"editor.wordHighlightBackground\":\"#eaeef280\",\"editor.wordHighlightBorder\":\"#afb8c199\",\"editor.wordHighlightStrongBackground\":\"#afb8c14d\",\"editor.wordHighlightStrongBorder\":\"#afb8c199\",\"editorBracketHighlight.foreground1\":\"#0969da\",\"editorBracketHighlight.foreground2\":\"#1a7f37\",\"editorBracketHighlight.foreground3\":\"#9a6700\",\"editorBracketHighlight.foreground4\":\"#cf222e\",\"editorBracketHighlight.foreground5\":\"#bf3989\",\"editorBracketHighlight.foreground6\":\"#8250df\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#656d76\",\"editorBracketMatch.background\":\"#4ac26b40\",\"editorBracketMatch.border\":\"#4ac26b99\",\"editorCursor.foreground\":\"#0969da\",\"editorGroup.border\":\"#d0d7de\",\"editorGroupHeader.tabsBackground\":\"#f6f8fa\",\"editorGroupHeader.tabsBorder\":\"#d0d7de\",\"editorGutter.addedBackground\":\"#4ac26b66\",\"editorGutter.deletedBackground\":\"#ff818266\",\"editorGutter.modifiedBackground\":\"#d4a72c66\",\"editorIndentGuide.activeBackground\":\"#1f23283d\",\"editorIndentGuide.background\":\"#1f23281f\",\"editorInlayHint.background\":\"#afb8c133\",\"editorInlayHint.foreground\":\"#656d76\",\"editorInlayHint.paramBackground\":\"#afb8c133\",\"editorInlayHint.paramForeground\":\"#656d76\",\"editorInlayHint.typeBackground\":\"#afb8c133\",\"editorInlayHint.typeForeground\":\"#656d76\",\"editorLineNumber.activeForeground\":\"#1f2328\",\"editorLineNumber.foreground\":\"#8c959f\",\"editorOverviewRuler.border\":\"#ffffff\",\"editorWhitespace.foreground\":\"#afb8c1\",\"editorWidget.background\":\"#ffffff\",\"errorForeground\":\"#cf222e\",\"focusBorder\":\"#0969da\",\"foreground\":\"#1f2328\",\"gitDecoration.addedResourceForeground\":\"#1a7f37\",\"gitDecoration.conflictingResourceForeground\":\"#bc4c00\",\"gitDecoration.deletedResourceForeground\":\"#cf222e\",\"gitDecoration.ignoredResourceForeground\":\"#6e7781\",\"gitDecoration.modifiedResourceForeground\":\"#9a6700\",\"gitDecoration.submoduleResourceForeground\":\"#656d76\",\"gitDecoration.untrackedResourceForeground\":\"#1a7f37\",\"icon.foreground\":\"#656d76\",\"input.background\":\"#ffffff\",\"input.border\":\"#d0d7de\",\"input.foreground\":\"#1f2328\",\"input.placeholderForeground\":\"#6e7781\",\"keybindingLabel.foreground\":\"#1f2328\",\"list.activeSelectionBackground\":\"#afb8c133\",\"list.activeSelectionForeground\":\"#1f2328\",\"list.focusBackground\":\"#ddf4ff\",\"list.focusForeground\":\"#1f2328\",\"list.highlightForeground\":\"#0969da\",\"list.hoverBackground\":\"#eaeef280\",\"list.hoverForeground\":\"#1f2328\",\"list.inactiveFocusBackground\":\"#ddf4ff\",\"list.inactiveSelectionBackground\":\"#afb8c133\",\"list.inactiveSelectionForeground\":\"#1f2328\",\"minimapSlider.activeBackground\":\"#8c959f47\",\"minimapSlider.background\":\"#8c959f33\",\"minimapSlider.hoverBackground\":\"#8c959f3d\",\"notificationCenterHeader.background\":\"#f6f8fa\",\"notificationCenterHeader.foreground\":\"#656d76\",\"notifications.background\":\"#ffffff\",\"notifications.border\":\"#d0d7de\",\"notifications.foreground\":\"#1f2328\",\"notificationsErrorIcon.foreground\":\"#cf222e\",\"notificationsInfoIcon.foreground\":\"#0969da\",\"notificationsWarningIcon.foreground\":\"#9a6700\",\"panel.background\":\"#f6f8fa\",\"panel.border\":\"#d0d7de\",\"panelInput.border\":\"#d0d7de\",\"panelTitle.activeBorder\":\"#fd8c73\",\"panelTitle.activeForeground\":\"#1f2328\",\"panelTitle.inactiveForeground\":\"#656d76\",\"pickerGroup.border\":\"#d0d7de\",\"pickerGroup.foreground\":\"#656d76\",\"progressBar.background\":\"#0969da\",\"quickInput.background\":\"#ffffff\",\"quickInput.foreground\":\"#1f2328\",\"scrollbar.shadow\":\"#6e778133\",\"scrollbarSlider.activeBackground\":\"#8c959f47\",\"scrollbarSlider.background\":\"#8c959f33\",\"scrollbarSlider.hoverBackground\":\"#8c959f3d\",\"settings.headerForeground\":\"#1f2328\",\"settings.modifiedItemIndicator\":\"#d4a72c66\",\"sideBar.background\":\"#f6f8fa\",\"sideBar.border\":\"#d0d7de\",\"sideBar.foreground\":\"#1f2328\",\"sideBarSectionHeader.background\":\"#f6f8fa\",\"sideBarSectionHeader.border\":\"#d0d7de\",\"sideBarSectionHeader.foreground\":\"#1f2328\",\"sideBarTitle.foreground\":\"#1f2328\",\"statusBar.background\":\"#ffffff\",\"statusBar.border\":\"#d0d7de\",\"statusBar.debuggingBackground\":\"#cf222e\",\"statusBar.debuggingForeground\":\"#ffffff\",\"statusBar.focusBorder\":\"#0969da80\",\"statusBar.foreground\":\"#656d76\",\"statusBar.noFolderBackground\":\"#ffffff\",\"statusBarItem.activeBackground\":\"#1f23281f\",\"statusBarItem.focusBorder\":\"#0969da\",\"statusBarItem.hoverBackground\":\"#1f232814\",\"statusBarItem.prominentBackground\":\"#afb8c133\",\"statusBarItem.remoteBackground\":\"#eaeef2\",\"statusBarItem.remoteForeground\":\"#1f2328\",\"symbolIcon.arrayForeground\":\"#953800\",\"symbolIcon.booleanForeground\":\"#0550ae\",\"symbolIcon.classForeground\":\"#953800\",\"symbolIcon.colorForeground\":\"#0a3069\",\"symbolIcon.constantForeground\":\"#116329\",\"symbolIcon.constructorForeground\":\"#3e1f79\",\"symbolIcon.enumeratorForeground\":\"#953800\",\"symbolIcon.enumeratorMemberForeground\":\"#0550ae\",\"symbolIcon.eventForeground\":\"#57606a\",\"symbolIcon.fieldForeground\":\"#953800\",\"symbolIcon.fileForeground\":\"#7d4e00\",\"symbolIcon.folderForeground\":\"#7d4e00\",\"symbolIcon.functionForeground\":\"#6639ba\",\"symbolIcon.interfaceForeground\":\"#953800\",\"symbolIcon.keyForeground\":\"#0550ae\",\"symbolIcon.keywordForeground\":\"#a40e26\",\"symbolIcon.methodForeground\":\"#6639ba\",\"symbolIcon.moduleForeground\":\"#a40e26\",\"symbolIcon.namespaceForeground\":\"#a40e26\",\"symbolIcon.nullForeground\":\"#0550ae\",\"symbolIcon.numberForeground\":\"#116329\",\"symbolIcon.objectForeground\":\"#953800\",\"symbolIcon.operatorForeground\":\"#0a3069\",\"symbolIcon.packageForeground\":\"#953800\",\"symbolIcon.propertyForeground\":\"#953800\",\"symbolIcon.referenceForeground\":\"#0550ae\",\"symbolIcon.snippetForeground\":\"#0550ae\",\"symbolIcon.stringForeground\":\"#0a3069\",\"symbolIcon.structForeground\":\"#953800\",\"symbolIcon.textForeground\":\"#0a3069\",\"symbolIcon.typeParameterForeground\":\"#0a3069\",\"symbolIcon.unitForeground\":\"#0550ae\",\"symbolIcon.variableForeground\":\"#953800\",\"tab.activeBackground\":\"#ffffff\",\"tab.activeBorder\":\"#ffffff\",\"tab.activeBorderTop\":\"#fd8c73\",\"tab.activeForeground\":\"#1f2328\",\"tab.border\":\"#d0d7de\",\"tab.hoverBackground\":\"#ffffff\",\"tab.inactiveBackground\":\"#f6f8fa\",\"tab.inactiveForeground\":\"#656d76\",\"tab.unfocusedActiveBorder\":\"#ffffff\",\"tab.unfocusedActiveBorderTop\":\"#d0d7de\",\"tab.unfocusedHoverBackground\":\"#eaeef280\",\"terminal.ansiBlack\":\"#24292f\",\"terminal.ansiBlue\":\"#0969da\",\"terminal.ansiBrightBlack\":\"#57606a\",\"terminal.ansiBrightBlue\":\"#218bff\",\"terminal.ansiBrightCyan\":\"#3192aa\",\"terminal.ansiBrightGreen\":\"#1a7f37\",\"terminal.ansiBrightMagenta\":\"#a475f9\",\"terminal.ansiBrightRed\":\"#a40e26\",\"terminal.ansiBrightWhite\":\"#8c959f\",\"terminal.ansiBrightYellow\":\"#633c01\",\"terminal.ansiCyan\":\"#1b7c83\",\"terminal.ansiGreen\":\"#116329\",\"terminal.ansiMagenta\":\"#8250df\",\"terminal.ansiRed\":\"#cf222e\",\"terminal.ansiWhite\":\"#6e7781\",\"terminal.ansiYellow\":\"#4d2d00\",\"terminal.foreground\":\"#1f2328\",\"textBlockQuote.background\":\"#f6f8fa\",\"textBlockQuote.border\":\"#d0d7de\",\"textCodeBlock.background\":\"#afb8c133\",\"textLink.activeForeground\":\"#0969da\",\"textLink.foreground\":\"#0969da\",\"textPreformat.foreground\":\"#656d76\",\"textSeparator.foreground\":\"#d8dee4\",\"titleBar.activeBackground\":\"#ffffff\",\"titleBar.activeForeground\":\"#656d76\",\"titleBar.border\":\"#d0d7de\",\"titleBar.inactiveBackground\":\"#f6f8fa\",\"titleBar.inactiveForeground\":\"#656d76\",\"tree.indentGuidesStroke\":\"#d8dee4\",\"welcomePage.buttonBackground\":\"#f6f8fa\",\"welcomePage.buttonHoverBackground\":\"#f3f4f6\"},\"displayName\":\"GitHub Light Default\",\"name\":\"github-light-default\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#6e7781\"}},{\"scope\":[\"constant.other.placeholder\",\"constant.character\"],\"settings\":{\"foreground\":\"#cf222e\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\",\"entity\"],\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":[\"entity.name\",\"meta.export.default\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#953800\"}},{\"scope\":[\"variable.parameter.function\",\"meta.jsx.children\",\"meta.block\",\"meta.tag.attributes\",\"entity.name.constant\",\"meta.object.member\",\"meta.embedded.expression\"],\"settings\":{\"foreground\":\"#1f2328\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#8250df\"}},{\"scope\":[\"entity.name.tag\",\"support.class.component\"],\"settings\":{\"foreground\":\"#116329\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#cf222e\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#cf222e\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#1f2328\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#0a3069\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#953800\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#1f2328\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#82071e\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#82071e\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#82071e\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#82071e\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#cf222e\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#f6f8fa\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#82071e\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#0a3069\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#0a3069\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#116329\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#116329\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#953800\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#0550ae\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#116329\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#1f2328\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#1f2328\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#ffebe9\",\"foreground\":\"#82071e\"}},{\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#cf222e\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#dafbe1\",\"foreground\":\"#116329\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#ffd8b5\",\"foreground\":\"#953800\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#0550ae\",\"foreground\":\"#eaeef2\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#8250df\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#0550ae\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#57606a\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#82071e\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"foreground\":\"#0a3069\"}}],\"type\":\"light\"}"))
|
|
2
|
+
export default Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#fd8c73\",\"activityBar.background\":\"#ffffff\",\"activityBar.border\":\"#d0d7de\",\"activityBar.foreground\":\"#1f2328\",\"activityBar.inactiveForeground\":\"#656d76\",\"activityBarBadge.background\":\"#0969da\",\"activityBarBadge.foreground\":\"#ffffff\",\"badge.background\":\"#0969da\",\"badge.foreground\":\"#ffffff\",\"breadcrumb.activeSelectionForeground\":\"#656d76\",\"breadcrumb.focusForeground\":\"#1f2328\",\"breadcrumb.foreground\":\"#656d76\",\"breadcrumbPicker.background\":\"#ffffff\",\"button.background\":\"#1f883d\",\"button.foreground\":\"#ffffff\",\"button.hoverBackground\":\"#1a7f37\",\"button.secondaryBackground\":\"#ebecf0\",\"button.secondaryForeground\":\"#24292f\",\"button.secondaryHoverBackground\":\"#f3f4f6\",\"checkbox.background\":\"#f6f8fa\",\"checkbox.border\":\"#d0d7de\",\"debugConsole.errorForeground\":\"#cf222e\",\"debugConsole.infoForeground\":\"#57606a\",\"debugConsole.sourceForeground\":\"#9a6700\",\"debugConsole.warningForeground\":\"#7d4e00\",\"debugConsoleInputIcon.foreground\":\"#6639ba\",\"debugIcon.breakpointForeground\":\"#cf222e\",\"debugTokenExpression.boolean\":\"#116329\",\"debugTokenExpression.error\":\"#a40e26\",\"debugTokenExpression.name\":\"#0550ae\",\"debugTokenExpression.number\":\"#116329\",\"debugTokenExpression.string\":\"#0a3069\",\"debugTokenExpression.value\":\"#0a3069\",\"debugToolBar.background\":\"#ffffff\",\"descriptionForeground\":\"#656d76\",\"diffEditor.insertedLineBackground\":\"#aceebb4d\",\"diffEditor.insertedTextBackground\":\"#6fdd8b80\",\"diffEditor.removedLineBackground\":\"#ffcecb4d\",\"diffEditor.removedTextBackground\":\"#ff818266\",\"dropdown.background\":\"#ffffff\",\"dropdown.border\":\"#d0d7de\",\"dropdown.foreground\":\"#1f2328\",\"dropdown.listBackground\":\"#ffffff\",\"editor.background\":\"#ffffff\",\"editor.findMatchBackground\":\"#bf8700\",\"editor.findMatchHighlightBackground\":\"#fae17d80\",\"editor.focusedStackFrameHighlightBackground\":\"#4ac26b66\",\"editor.foldBackground\":\"#6e77811a\",\"editor.foreground\":\"#1f2328\",\"editor.lineHighlightBackground\":\"#eaeef280\",\"editor.linkedEditingBackground\":\"#0969da12\",\"editor.selectionHighlightBackground\":\"#4ac26b40\",\"editor.stackFrameHighlightBackground\":\"#d4a72c66\",\"editor.wordHighlightBackground\":\"#eaeef280\",\"editor.wordHighlightBorder\":\"#afb8c199\",\"editor.wordHighlightStrongBackground\":\"#afb8c14d\",\"editor.wordHighlightStrongBorder\":\"#afb8c199\",\"editorBracketHighlight.foreground1\":\"#0969da\",\"editorBracketHighlight.foreground2\":\"#1a7f37\",\"editorBracketHighlight.foreground3\":\"#9a6700\",\"editorBracketHighlight.foreground4\":\"#cf222e\",\"editorBracketHighlight.foreground5\":\"#bf3989\",\"editorBracketHighlight.foreground6\":\"#8250df\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#656d76\",\"editorBracketMatch.background\":\"#4ac26b40\",\"editorBracketMatch.border\":\"#4ac26b99\",\"editorCursor.foreground\":\"#0969da\",\"editorGroup.border\":\"#d0d7de\",\"editorGroupHeader.tabsBackground\":\"#f6f8fa\",\"editorGroupHeader.tabsBorder\":\"#d0d7de\",\"editorGutter.addedBackground\":\"#4ac26b66\",\"editorGutter.deletedBackground\":\"#ff818266\",\"editorGutter.modifiedBackground\":\"#d4a72c66\",\"editorIndentGuide.activeBackground\":\"#1f23283d\",\"editorIndentGuide.background\":\"#1f23281f\",\"editorInlayHint.background\":\"#afb8c133\",\"editorInlayHint.foreground\":\"#656d76\",\"editorInlayHint.paramBackground\":\"#afb8c133\",\"editorInlayHint.paramForeground\":\"#656d76\",\"editorInlayHint.typeBackground\":\"#afb8c133\",\"editorInlayHint.typeForeground\":\"#656d76\",\"editorLineNumber.activeForeground\":\"#1f2328\",\"editorLineNumber.foreground\":\"#8c959f\",\"editorOverviewRuler.border\":\"#ffffff\",\"editorWhitespace.foreground\":\"#afb8c1\",\"editorWidget.background\":\"#ffffff\",\"errorForeground\":\"#cf222e\",\"focusBorder\":\"#0969da\",\"foreground\":\"#1f2328\",\"gitDecoration.addedResourceForeground\":\"#1a7f37\",\"gitDecoration.conflictingResourceForeground\":\"#bc4c00\",\"gitDecoration.deletedResourceForeground\":\"#cf222e\",\"gitDecoration.ignoredResourceForeground\":\"#6e7781\",\"gitDecoration.modifiedResourceForeground\":\"#9a6700\",\"gitDecoration.submoduleResourceForeground\":\"#656d76\",\"gitDecoration.untrackedResourceForeground\":\"#1a7f37\",\"icon.foreground\":\"#656d76\",\"input.background\":\"#ffffff\",\"input.border\":\"#d0d7de\",\"input.foreground\":\"#1f2328\",\"input.placeholderForeground\":\"#6e7781\",\"keybindingLabel.foreground\":\"#1f2328\",\"list.activeSelectionBackground\":\"#afb8c133\",\"list.activeSelectionForeground\":\"#1f2328\",\"list.focusBackground\":\"#ddf4ff\",\"list.focusForeground\":\"#1f2328\",\"list.highlightForeground\":\"#0969da\",\"list.hoverBackground\":\"#eaeef280\",\"list.hoverForeground\":\"#1f2328\",\"list.inactiveFocusBackground\":\"#ddf4ff\",\"list.inactiveSelectionBackground\":\"#afb8c133\",\"list.inactiveSelectionForeground\":\"#1f2328\",\"minimapSlider.activeBackground\":\"#8c959f47\",\"minimapSlider.background\":\"#8c959f33\",\"minimapSlider.hoverBackground\":\"#8c959f3d\",\"notificationCenterHeader.background\":\"#f6f8fa\",\"notificationCenterHeader.foreground\":\"#656d76\",\"notifications.background\":\"#ffffff\",\"notifications.border\":\"#d0d7de\",\"notifications.foreground\":\"#1f2328\",\"notificationsErrorIcon.foreground\":\"#cf222e\",\"notificationsInfoIcon.foreground\":\"#0969da\",\"notificationsWarningIcon.foreground\":\"#9a6700\",\"panel.background\":\"#f6f8fa\",\"panel.border\":\"#d0d7de\",\"panelInput.border\":\"#d0d7de\",\"panelTitle.activeBorder\":\"#fd8c73\",\"panelTitle.activeForeground\":\"#1f2328\",\"panelTitle.inactiveForeground\":\"#656d76\",\"pickerGroup.border\":\"#d0d7de\",\"pickerGroup.foreground\":\"#656d76\",\"progressBar.background\":\"#0969da\",\"quickInput.background\":\"#ffffff\",\"quickInput.foreground\":\"#1f2328\",\"scrollbar.shadow\":\"#6e778133\",\"scrollbarSlider.activeBackground\":\"#8c959f47\",\"scrollbarSlider.background\":\"#8c959f33\",\"scrollbarSlider.hoverBackground\":\"#8c959f3d\",\"settings.headerForeground\":\"#1f2328\",\"settings.modifiedItemIndicator\":\"#d4a72c66\",\"sideBar.background\":\"#f6f8fa\",\"sideBar.border\":\"#d0d7de\",\"sideBar.foreground\":\"#1f2328\",\"sideBarSectionHeader.background\":\"#f6f8fa\",\"sideBarSectionHeader.border\":\"#d0d7de\",\"sideBarSectionHeader.foreground\":\"#1f2328\",\"sideBarTitle.foreground\":\"#1f2328\",\"statusBar.background\":\"#ffffff\",\"statusBar.border\":\"#d0d7de\",\"statusBar.debuggingBackground\":\"#cf222e\",\"statusBar.debuggingForeground\":\"#ffffff\",\"statusBar.focusBorder\":\"#0969da80\",\"statusBar.foreground\":\"#656d76\",\"statusBar.noFolderBackground\":\"#ffffff\",\"statusBarItem.activeBackground\":\"#1f23281f\",\"statusBarItem.focusBorder\":\"#0969da\",\"statusBarItem.hoverBackground\":\"#1f232814\",\"statusBarItem.prominentBackground\":\"#afb8c133\",\"statusBarItem.remoteBackground\":\"#eaeef2\",\"statusBarItem.remoteForeground\":\"#1f2328\",\"symbolIcon.arrayForeground\":\"#953800\",\"symbolIcon.booleanForeground\":\"#0550ae\",\"symbolIcon.classForeground\":\"#953800\",\"symbolIcon.colorForeground\":\"#0a3069\",\"symbolIcon.constantForeground\":\"#116329\",\"symbolIcon.constructorForeground\":\"#3e1f79\",\"symbolIcon.enumeratorForeground\":\"#953800\",\"symbolIcon.enumeratorMemberForeground\":\"#0550ae\",\"symbolIcon.eventForeground\":\"#57606a\",\"symbolIcon.fieldForeground\":\"#953800\",\"symbolIcon.fileForeground\":\"#7d4e00\",\"symbolIcon.folderForeground\":\"#7d4e00\",\"symbolIcon.functionForeground\":\"#6639ba\",\"symbolIcon.interfaceForeground\":\"#953800\",\"symbolIcon.keyForeground\":\"#0550ae\",\"symbolIcon.keywordForeground\":\"#a40e26\",\"symbolIcon.methodForeground\":\"#6639ba\",\"symbolIcon.moduleForeground\":\"#a40e26\",\"symbolIcon.namespaceForeground\":\"#a40e26\",\"symbolIcon.nullForeground\":\"#0550ae\",\"symbolIcon.numberForeground\":\"#116329\",\"symbolIcon.objectForeground\":\"#953800\",\"symbolIcon.operatorForeground\":\"#0a3069\",\"symbolIcon.packageForeground\":\"#953800\",\"symbolIcon.propertyForeground\":\"#953800\",\"symbolIcon.referenceForeground\":\"#0550ae\",\"symbolIcon.snippetForeground\":\"#0550ae\",\"symbolIcon.stringForeground\":\"#0a3069\",\"symbolIcon.structForeground\":\"#953800\",\"symbolIcon.textForeground\":\"#0a3069\",\"symbolIcon.typeParameterForeground\":\"#0a3069\",\"symbolIcon.unitForeground\":\"#0550ae\",\"symbolIcon.variableForeground\":\"#953800\",\"tab.activeBackground\":\"#ffffff\",\"tab.activeBorder\":\"#ffffff\",\"tab.activeBorderTop\":\"#fd8c73\",\"tab.activeForeground\":\"#1f2328\",\"tab.border\":\"#d0d7de\",\"tab.hoverBackground\":\"#ffffff\",\"tab.inactiveBackground\":\"#f6f8fa\",\"tab.inactiveForeground\":\"#656d76\",\"tab.unfocusedActiveBorder\":\"#ffffff\",\"tab.unfocusedActiveBorderTop\":\"#d0d7de\",\"tab.unfocusedHoverBackground\":\"#eaeef280\",\"terminal.ansiBlack\":\"#24292f\",\"terminal.ansiBlue\":\"#0969da\",\"terminal.ansiBrightBlack\":\"#57606a\",\"terminal.ansiBrightBlue\":\"#218bff\",\"terminal.ansiBrightCyan\":\"#3192aa\",\"terminal.ansiBrightGreen\":\"#1a7f37\",\"terminal.ansiBrightMagenta\":\"#a475f9\",\"terminal.ansiBrightRed\":\"#a40e26\",\"terminal.ansiBrightWhite\":\"#8c959f\",\"terminal.ansiBrightYellow\":\"#633c01\",\"terminal.ansiCyan\":\"#1b7c83\",\"terminal.ansiGreen\":\"#116329\",\"terminal.ansiMagenta\":\"#8250df\",\"terminal.ansiRed\":\"#cf222e\",\"terminal.ansiWhite\":\"#6e7781\",\"terminal.ansiYellow\":\"#4d2d00\",\"terminal.foreground\":\"#1f2328\",\"textBlockQuote.background\":\"#f6f8fa\",\"textBlockQuote.border\":\"#d0d7de\",\"textCodeBlock.background\":\"#afb8c133\",\"textLink.activeForeground\":\"#0969da\",\"textLink.foreground\":\"#0969da\",\"textPreformat.background\":\"#afb8c133\",\"textPreformat.foreground\":\"#656d76\",\"textSeparator.foreground\":\"#d8dee4\",\"titleBar.activeBackground\":\"#ffffff\",\"titleBar.activeForeground\":\"#656d76\",\"titleBar.border\":\"#d0d7de\",\"titleBar.inactiveBackground\":\"#f6f8fa\",\"titleBar.inactiveForeground\":\"#656d76\",\"tree.indentGuidesStroke\":\"#d8dee4\",\"welcomePage.buttonBackground\":\"#f6f8fa\",\"welcomePage.buttonHoverBackground\":\"#f3f4f6\"},\"displayName\":\"GitHub Light Default\",\"name\":\"github-light-default\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#6e7781\"}},{\"scope\":[\"constant.other.placeholder\",\"constant.character\"],\"settings\":{\"foreground\":\"#cf222e\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\",\"entity\"],\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":[\"entity.name\",\"meta.export.default\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#953800\"}},{\"scope\":[\"variable.parameter.function\",\"meta.jsx.children\",\"meta.block\",\"meta.tag.attributes\",\"entity.name.constant\",\"meta.object.member\",\"meta.embedded.expression\"],\"settings\":{\"foreground\":\"#1f2328\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#8250df\"}},{\"scope\":[\"entity.name.tag\",\"support.class.component\"],\"settings\":{\"foreground\":\"#116329\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#cf222e\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#cf222e\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#1f2328\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#0a3069\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#953800\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#1f2328\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#82071e\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#82071e\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#82071e\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#82071e\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#cf222e\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#f6f8fa\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#82071e\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#0a3069\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#0a3069\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#116329\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#116329\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#953800\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#0550ae\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#116329\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#1f2328\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#1f2328\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#ffebe9\",\"foreground\":\"#82071e\"}},{\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#cf222e\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#dafbe1\",\"foreground\":\"#116329\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#ffd8b5\",\"foreground\":\"#953800\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#0550ae\",\"foreground\":\"#eaeef2\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#8250df\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#0550ae\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#57606a\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#82071e\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"foreground\":\"#0a3069\"}}],\"type\":\"light\"}"))
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/* Theme: github-light-high-contrast */
|
|
2
|
-
export default Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#ef5b48\",\"activityBar.background\":\"#ffffff\",\"activityBar.border\":\"#20252c\",\"activityBar.foreground\":\"#0e1116\",\"activityBar.inactiveForeground\":\"#0e1116\",\"activityBarBadge.background\":\"#0349b4\",\"activityBarBadge.foreground\":\"#ffffff\",\"badge.background\":\"#0349b4\",\"badge.foreground\":\"#ffffff\",\"breadcrumb.activeSelectionForeground\":\"#0e1116\",\"breadcrumb.focusForeground\":\"#0e1116\",\"breadcrumb.foreground\":\"#0e1116\",\"breadcrumbPicker.background\":\"#ffffff\",\"button.background\":\"#055d20\",\"button.foreground\":\"#ffffff\",\"button.hoverBackground\":\"#024c1a\",\"button.secondaryBackground\":\"#acb6c0\",\"button.secondaryForeground\":\"#0e1116\",\"button.secondaryHoverBackground\":\"#ced5dc\",\"checkbox.background\":\"#e7ecf0\",\"checkbox.border\":\"#20252c\",\"debugConsole.errorForeground\":\"#a0111f\",\"debugConsole.infoForeground\":\"#4b535d\",\"debugConsole.sourceForeground\":\"#744500\",\"debugConsole.warningForeground\":\"#603700\",\"debugConsoleInputIcon.foreground\":\"#512598\",\"debugIcon.breakpointForeground\":\"#a0111f\",\"debugTokenExpression.boolean\":\"#024c1a\",\"debugTokenExpression.error\":\"#86061d\",\"debugTokenExpression.name\":\"#023b95\",\"debugTokenExpression.number\":\"#024c1a\",\"debugTokenExpression.string\":\"#032563\",\"debugTokenExpression.value\":\"#032563\",\"debugToolBar.background\":\"#ffffff\",\"descriptionForeground\":\"#0e1116\",\"diffEditor.insertedLineBackground\":\"#82e5964d\",\"diffEditor.insertedTextBackground\":\"#43c66380\",\"diffEditor.removedLineBackground\":\"#ffc1bc4d\",\"diffEditor.removedTextBackground\":\"#ee5a5d66\",\"dropdown.background\":\"#ffffff\",\"dropdown.border\":\"#20252c\",\"dropdown.foreground\":\"#0e1116\",\"dropdown.listBackground\":\"#ffffff\",\"editor.background\":\"#ffffff\",\"editor.findMatchBackground\":\"#744500\",\"editor.findMatchHighlightBackground\":\"#f0ce5380\",\"editor.focusedStackFrameHighlightBackground\":\"#26a148\",\"editor.foldBackground\":\"#66707b1a\",\"editor.foreground\":\"#0e1116\",\"editor.inactiveSelectionBackground\":\"#66707b\",\"editor.lineHighlightBackground\":\"#e7ecf0\",\"editor.linkedEditingBackground\":\"#0349b412\",\"editor.selectionBackground\":\"#0e1116\",\"editor.selectionForeground\":\"#ffffff\",\"editor.selectionHighlightBackground\":\"#26a14840\",\"editor.stackFrameHighlightBackground\":\"#b58407\",\"editor.wordHighlightBackground\":\"#e7ecf080\",\"editor.wordHighlightBorder\":\"#acb6c099\",\"editor.wordHighlightStrongBackground\":\"#acb6c04d\",\"editor.wordHighlightStrongBorder\":\"#acb6c099\",\"editorBracketHighlight.foreground1\":\"#0349b4\",\"editorBracketHighlight.foreground2\":\"#055d20\",\"editorBracketHighlight.foreground3\":\"#744500\",\"editorBracketHighlight.foreground4\":\"#a0111f\",\"editorBracketHighlight.foreground5\":\"#971368\",\"editorBracketHighlight.foreground6\":\"#622cbc\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#0e1116\",\"editorBracketMatch.background\":\"#26a14840\",\"editorBracketMatch.border\":\"#26a14899\",\"editorCursor.foreground\":\"#0349b4\",\"editorGroup.border\":\"#20252c\",\"editorGroupHeader.tabsBackground\":\"#ffffff\",\"editorGroupHeader.tabsBorder\":\"#20252c\",\"editorGutter.addedBackground\":\"#26a148\",\"editorGutter.deletedBackground\":\"#ee5a5d\",\"editorGutter.modifiedBackground\":\"#b58407\",\"editorIndentGuide.activeBackground\":\"#0e11163d\",\"editorIndentGuide.background\":\"#0e11161f\",\"editorInlayHint.background\":\"#acb6c033\",\"editorInlayHint.foreground\":\"#0e1116\",\"editorInlayHint.paramBackground\":\"#acb6c033\",\"editorInlayHint.paramForeground\":\"#0e1116\",\"editorInlayHint.typeBackground\":\"#acb6c033\",\"editorInlayHint.typeForeground\":\"#0e1116\",\"editorLineNumber.activeForeground\":\"#0e1116\",\"editorLineNumber.foreground\":\"#88929d\",\"editorOverviewRuler.border\":\"#ffffff\",\"editorWhitespace.foreground\":\"#acb6c0\",\"editorWidget.background\":\"#ffffff\",\"errorForeground\":\"#a0111f\",\"focusBorder\":\"#0349b4\",\"foreground\":\"#0e1116\",\"gitDecoration.addedResourceForeground\":\"#055d20\",\"gitDecoration.conflictingResourceForeground\":\"#873800\",\"gitDecoration.deletedResourceForeground\":\"#a0111f\",\"gitDecoration.ignoredResourceForeground\":\"#66707b\",\"gitDecoration.modifiedResourceForeground\":\"#744500\",\"gitDecoration.submoduleResourceForeground\":\"#0e1116\",\"gitDecoration.untrackedResourceForeground\":\"#055d20\",\"icon.foreground\":\"#0e1116\",\"input.background\":\"#ffffff\",\"input.border\":\"#20252c\",\"input.foreground\":\"#0e1116\",\"input.placeholderForeground\":\"#66707b\",\"keybindingLabel.foreground\":\"#0e1116\",\"list.activeSelectionBackground\":\"#acb6c033\",\"list.activeSelectionForeground\":\"#0e1116\",\"list.focusBackground\":\"#dff7ff\",\"list.focusForeground\":\"#0e1116\",\"list.highlightForeground\":\"#0349b4\",\"list.hoverBackground\":\"#e7ecf0\",\"list.hoverForeground\":\"#0e1116\",\"list.inactiveFocusBackground\":\"#dff7ff\",\"list.inactiveSelectionBackground\":\"#acb6c033\",\"list.inactiveSelectionForeground\":\"#0e1116\",\"minimapSlider.activeBackground\":\"#88929d47\",\"minimapSlider.background\":\"#88929d33\",\"minimapSlider.hoverBackground\":\"#88929d3d\",\"notificationCenterHeader.background\":\"#e7ecf0\",\"notificationCenterHeader.foreground\":\"#0e1116\",\"notifications.background\":\"#ffffff\",\"notifications.border\":\"#20252c\",\"notifications.foreground\":\"#0e1116\",\"notificationsErrorIcon.foreground\":\"#a0111f\",\"notificationsInfoIcon.foreground\":\"#0349b4\",\"notificationsWarningIcon.foreground\":\"#744500\",\"panel.background\":\"#ffffff\",\"panel.border\":\"#20252c\",\"panelInput.border\":\"#20252c\",\"panelTitle.activeBorder\":\"#ef5b48\",\"panelTitle.activeForeground\":\"#0e1116\",\"panelTitle.inactiveForeground\":\"#0e1116\",\"pickerGroup.border\":\"#20252c\",\"pickerGroup.foreground\":\"#0e1116\",\"progressBar.background\":\"#0349b4\",\"quickInput.background\":\"#ffffff\",\"quickInput.foreground\":\"#0e1116\",\"scrollbar.shadow\":\"#66707b33\",\"scrollbarSlider.activeBackground\":\"#88929d47\",\"scrollbarSlider.background\":\"#88929d33\",\"scrollbarSlider.hoverBackground\":\"#88929d3d\",\"settings.headerForeground\":\"#0e1116\",\"settings.modifiedItemIndicator\":\"#b58407\",\"sideBar.background\":\"#ffffff\",\"sideBar.border\":\"#20252c\",\"sideBar.foreground\":\"#0e1116\",\"sideBarSectionHeader.background\":\"#ffffff\",\"sideBarSectionHeader.border\":\"#20252c\",\"sideBarSectionHeader.foreground\":\"#0e1116\",\"sideBarTitle.foreground\":\"#0e1116\",\"statusBar.background\":\"#ffffff\",\"statusBar.border\":\"#20252c\",\"statusBar.debuggingBackground\":\"#a0111f\",\"statusBar.debuggingForeground\":\"#ffffff\",\"statusBar.focusBorder\":\"#0349b480\",\"statusBar.foreground\":\"#0e1116\",\"statusBar.noFolderBackground\":\"#ffffff\",\"statusBarItem.activeBackground\":\"#0e11161f\",\"statusBarItem.focusBorder\":\"#0349b4\",\"statusBarItem.hoverBackground\":\"#0e111614\",\"statusBarItem.prominentBackground\":\"#acb6c033\",\"statusBarItem.remoteBackground\":\"#e7ecf0\",\"statusBarItem.remoteForeground\":\"#0e1116\",\"symbolIcon.arrayForeground\":\"#702c00\",\"symbolIcon.booleanForeground\":\"#023b95\",\"symbolIcon.classForeground\":\"#702c00\",\"symbolIcon.colorForeground\":\"#032563\",\"symbolIcon.constantForeground\":\"#024c1a\",\"symbolIcon.constructorForeground\":\"#341763\",\"symbolIcon.enumeratorForeground\":\"#702c00\",\"symbolIcon.enumeratorMemberForeground\":\"#023b95\",\"symbolIcon.eventForeground\":\"#4b535d\",\"symbolIcon.fieldForeground\":\"#702c00\",\"symbolIcon.fileForeground\":\"#603700\",\"symbolIcon.folderForeground\":\"#603700\",\"symbolIcon.functionForeground\":\"#512598\",\"symbolIcon.interfaceForeground\":\"#702c00\",\"symbolIcon.keyForeground\":\"#023b95\",\"symbolIcon.keywordForeground\":\"#86061d\",\"symbolIcon.methodForeground\":\"#512598\",\"symbolIcon.moduleForeground\":\"#86061d\",\"symbolIcon.namespaceForeground\":\"#86061d\",\"symbolIcon.nullForeground\":\"#023b95\",\"symbolIcon.numberForeground\":\"#024c1a\",\"symbolIcon.objectForeground\":\"#702c00\",\"symbolIcon.operatorForeground\":\"#032563\",\"symbolIcon.packageForeground\":\"#702c00\",\"symbolIcon.propertyForeground\":\"#702c00\",\"symbolIcon.referenceForeground\":\"#023b95\",\"symbolIcon.snippetForeground\":\"#023b95\",\"symbolIcon.stringForeground\":\"#032563\",\"symbolIcon.structForeground\":\"#702c00\",\"symbolIcon.textForeground\":\"#032563\",\"symbolIcon.typeParameterForeground\":\"#032563\",\"symbolIcon.unitForeground\":\"#023b95\",\"symbolIcon.variableForeground\":\"#702c00\",\"tab.activeBackground\":\"#ffffff\",\"tab.activeBorder\":\"#ffffff\",\"tab.activeBorderTop\":\"#ef5b48\",\"tab.activeForeground\":\"#0e1116\",\"tab.border\":\"#20252c\",\"tab.hoverBackground\":\"#ffffff\",\"tab.inactiveBackground\":\"#ffffff\",\"tab.inactiveForeground\":\"#0e1116\",\"tab.unfocusedActiveBorder\":\"#ffffff\",\"tab.unfocusedActiveBorderTop\":\"#20252c\",\"tab.unfocusedHoverBackground\":\"#e7ecf0\",\"terminal.ansiBlack\":\"#0e1116\",\"terminal.ansiBlue\":\"#0349b4\",\"terminal.ansiBrightBlack\":\"#4b535d\",\"terminal.ansiBrightBlue\":\"#1168e3\",\"terminal.ansiBrightCyan\":\"#3192aa\",\"terminal.ansiBrightGreen\":\"#055d20\",\"terminal.ansiBrightMagenta\":\"#844ae7\",\"terminal.ansiBrightRed\":\"#86061d\",\"terminal.ansiBrightWhite\":\"#88929d\",\"terminal.ansiBrightYellow\":\"#4e2c00\",\"terminal.ansiCyan\":\"#1b7c83\",\"terminal.ansiGreen\":\"#024c1a\",\"terminal.ansiMagenta\":\"#622cbc\",\"terminal.ansiRed\":\"#a0111f\",\"terminal.ansiWhite\":\"#66707b\",\"terminal.ansiYellow\":\"#3f2200\",\"terminal.foreground\":\"#0e1116\",\"textBlockQuote.background\":\"#ffffff\",\"textBlockQuote.border\":\"#20252c\",\"textCodeBlock.background\":\"#acb6c033\",\"textLink.activeForeground\":\"#0349b4\",\"textLink.foreground\":\"#0349b4\",\"textPreformat.foreground\":\"#0e1116\",\"textSeparator.foreground\":\"#88929d\",\"titleBar.activeBackground\":\"#ffffff\",\"titleBar.activeForeground\":\"#0e1116\",\"titleBar.border\":\"#20252c\",\"titleBar.inactiveBackground\":\"#ffffff\",\"titleBar.inactiveForeground\":\"#0e1116\",\"tree.indentGuidesStroke\":\"#88929d\",\"welcomePage.buttonBackground\":\"#e7ecf0\",\"welcomePage.buttonHoverBackground\":\"#ced5dc\"},\"displayName\":\"GitHub Light High Contrast\",\"name\":\"github-light-high-contrast\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#66707b\"}},{\"scope\":[\"constant.other.placeholder\",\"constant.character\"],\"settings\":{\"foreground\":\"#a0111f\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\",\"entity\"],\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":[\"entity.name\",\"meta.export.default\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#702c00\"}},{\"scope\":[\"variable.parameter.function\",\"meta.jsx.children\",\"meta.block\",\"meta.tag.attributes\",\"entity.name.constant\",\"meta.object.member\",\"meta.embedded.expression\"],\"settings\":{\"foreground\":\"#0e1116\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#622cbc\"}},{\"scope\":[\"entity.name.tag\",\"support.class.component\"],\"settings\":{\"foreground\":\"#024c1a\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#a0111f\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#a0111f\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#0e1116\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#032563\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#702c00\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#0e1116\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#6e011a\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#6e011a\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#6e011a\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#6e011a\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#a0111f\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#ffffff\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#6e011a\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#032563\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#032563\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#024c1a\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#024c1a\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#702c00\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#023b95\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#024c1a\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#0e1116\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#0e1116\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#fff0ee\",\"foreground\":\"#6e011a\"}},{\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#a0111f\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#d2fedb\",\"foreground\":\"#024c1a\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#ffc67b\",\"foreground\":\"#702c00\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#023b95\",\"foreground\":\"#e7ecf0\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#622cbc\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#023b95\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#4b535d\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#6e011a\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"foreground\":\"#032563\"}}],\"type\":\"light\"}"))
|
|
2
|
+
export default Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#ef5b48\",\"activityBar.background\":\"#ffffff\",\"activityBar.border\":\"#20252c\",\"activityBar.foreground\":\"#0e1116\",\"activityBar.inactiveForeground\":\"#0e1116\",\"activityBarBadge.background\":\"#0349b4\",\"activityBarBadge.foreground\":\"#ffffff\",\"badge.background\":\"#0349b4\",\"badge.foreground\":\"#ffffff\",\"breadcrumb.activeSelectionForeground\":\"#0e1116\",\"breadcrumb.focusForeground\":\"#0e1116\",\"breadcrumb.foreground\":\"#0e1116\",\"breadcrumbPicker.background\":\"#ffffff\",\"button.background\":\"#055d20\",\"button.foreground\":\"#ffffff\",\"button.hoverBackground\":\"#024c1a\",\"button.secondaryBackground\":\"#acb6c0\",\"button.secondaryForeground\":\"#0e1116\",\"button.secondaryHoverBackground\":\"#ced5dc\",\"checkbox.background\":\"#e7ecf0\",\"checkbox.border\":\"#20252c\",\"debugConsole.errorForeground\":\"#a0111f\",\"debugConsole.infoForeground\":\"#4b535d\",\"debugConsole.sourceForeground\":\"#744500\",\"debugConsole.warningForeground\":\"#603700\",\"debugConsoleInputIcon.foreground\":\"#512598\",\"debugIcon.breakpointForeground\":\"#a0111f\",\"debugTokenExpression.boolean\":\"#024c1a\",\"debugTokenExpression.error\":\"#86061d\",\"debugTokenExpression.name\":\"#023b95\",\"debugTokenExpression.number\":\"#024c1a\",\"debugTokenExpression.string\":\"#032563\",\"debugTokenExpression.value\":\"#032563\",\"debugToolBar.background\":\"#ffffff\",\"descriptionForeground\":\"#0e1116\",\"diffEditor.insertedLineBackground\":\"#82e5964d\",\"diffEditor.insertedTextBackground\":\"#43c66380\",\"diffEditor.removedLineBackground\":\"#ffc1bc4d\",\"diffEditor.removedTextBackground\":\"#ee5a5d66\",\"dropdown.background\":\"#ffffff\",\"dropdown.border\":\"#20252c\",\"dropdown.foreground\":\"#0e1116\",\"dropdown.listBackground\":\"#ffffff\",\"editor.background\":\"#ffffff\",\"editor.findMatchBackground\":\"#744500\",\"editor.findMatchHighlightBackground\":\"#f0ce5380\",\"editor.focusedStackFrameHighlightBackground\":\"#26a148\",\"editor.foldBackground\":\"#66707b1a\",\"editor.foreground\":\"#0e1116\",\"editor.inactiveSelectionBackground\":\"#66707b\",\"editor.lineHighlightBackground\":\"#e7ecf0\",\"editor.linkedEditingBackground\":\"#0349b412\",\"editor.selectionBackground\":\"#0e1116\",\"editor.selectionForeground\":\"#ffffff\",\"editor.selectionHighlightBackground\":\"#26a14840\",\"editor.stackFrameHighlightBackground\":\"#b58407\",\"editor.wordHighlightBackground\":\"#e7ecf080\",\"editor.wordHighlightBorder\":\"#acb6c099\",\"editor.wordHighlightStrongBackground\":\"#acb6c04d\",\"editor.wordHighlightStrongBorder\":\"#acb6c099\",\"editorBracketHighlight.foreground1\":\"#0349b4\",\"editorBracketHighlight.foreground2\":\"#055d20\",\"editorBracketHighlight.foreground3\":\"#744500\",\"editorBracketHighlight.foreground4\":\"#a0111f\",\"editorBracketHighlight.foreground5\":\"#971368\",\"editorBracketHighlight.foreground6\":\"#622cbc\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#0e1116\",\"editorBracketMatch.background\":\"#26a14840\",\"editorBracketMatch.border\":\"#26a14899\",\"editorCursor.foreground\":\"#0349b4\",\"editorGroup.border\":\"#20252c\",\"editorGroupHeader.tabsBackground\":\"#ffffff\",\"editorGroupHeader.tabsBorder\":\"#20252c\",\"editorGutter.addedBackground\":\"#26a148\",\"editorGutter.deletedBackground\":\"#ee5a5d\",\"editorGutter.modifiedBackground\":\"#b58407\",\"editorIndentGuide.activeBackground\":\"#0e11163d\",\"editorIndentGuide.background\":\"#0e11161f\",\"editorInlayHint.background\":\"#acb6c033\",\"editorInlayHint.foreground\":\"#0e1116\",\"editorInlayHint.paramBackground\":\"#acb6c033\",\"editorInlayHint.paramForeground\":\"#0e1116\",\"editorInlayHint.typeBackground\":\"#acb6c033\",\"editorInlayHint.typeForeground\":\"#0e1116\",\"editorLineNumber.activeForeground\":\"#0e1116\",\"editorLineNumber.foreground\":\"#88929d\",\"editorOverviewRuler.border\":\"#ffffff\",\"editorWhitespace.foreground\":\"#acb6c0\",\"editorWidget.background\":\"#ffffff\",\"errorForeground\":\"#a0111f\",\"focusBorder\":\"#0349b4\",\"foreground\":\"#0e1116\",\"gitDecoration.addedResourceForeground\":\"#055d20\",\"gitDecoration.conflictingResourceForeground\":\"#873800\",\"gitDecoration.deletedResourceForeground\":\"#a0111f\",\"gitDecoration.ignoredResourceForeground\":\"#66707b\",\"gitDecoration.modifiedResourceForeground\":\"#744500\",\"gitDecoration.submoduleResourceForeground\":\"#0e1116\",\"gitDecoration.untrackedResourceForeground\":\"#055d20\",\"icon.foreground\":\"#0e1116\",\"input.background\":\"#ffffff\",\"input.border\":\"#20252c\",\"input.foreground\":\"#0e1116\",\"input.placeholderForeground\":\"#66707b\",\"keybindingLabel.foreground\":\"#0e1116\",\"list.activeSelectionBackground\":\"#acb6c033\",\"list.activeSelectionForeground\":\"#0e1116\",\"list.focusBackground\":\"#dff7ff\",\"list.focusForeground\":\"#0e1116\",\"list.highlightForeground\":\"#0349b4\",\"list.hoverBackground\":\"#e7ecf0\",\"list.hoverForeground\":\"#0e1116\",\"list.inactiveFocusBackground\":\"#dff7ff\",\"list.inactiveSelectionBackground\":\"#acb6c033\",\"list.inactiveSelectionForeground\":\"#0e1116\",\"minimapSlider.activeBackground\":\"#88929d47\",\"minimapSlider.background\":\"#88929d33\",\"minimapSlider.hoverBackground\":\"#88929d3d\",\"notificationCenterHeader.background\":\"#e7ecf0\",\"notificationCenterHeader.foreground\":\"#0e1116\",\"notifications.background\":\"#ffffff\",\"notifications.border\":\"#20252c\",\"notifications.foreground\":\"#0e1116\",\"notificationsErrorIcon.foreground\":\"#a0111f\",\"notificationsInfoIcon.foreground\":\"#0349b4\",\"notificationsWarningIcon.foreground\":\"#744500\",\"panel.background\":\"#ffffff\",\"panel.border\":\"#20252c\",\"panelInput.border\":\"#20252c\",\"panelTitle.activeBorder\":\"#ef5b48\",\"panelTitle.activeForeground\":\"#0e1116\",\"panelTitle.inactiveForeground\":\"#0e1116\",\"pickerGroup.border\":\"#20252c\",\"pickerGroup.foreground\":\"#0e1116\",\"progressBar.background\":\"#0349b4\",\"quickInput.background\":\"#ffffff\",\"quickInput.foreground\":\"#0e1116\",\"scrollbar.shadow\":\"#66707b33\",\"scrollbarSlider.activeBackground\":\"#88929d47\",\"scrollbarSlider.background\":\"#88929d33\",\"scrollbarSlider.hoverBackground\":\"#88929d3d\",\"settings.headerForeground\":\"#0e1116\",\"settings.modifiedItemIndicator\":\"#b58407\",\"sideBar.background\":\"#ffffff\",\"sideBar.border\":\"#20252c\",\"sideBar.foreground\":\"#0e1116\",\"sideBarSectionHeader.background\":\"#ffffff\",\"sideBarSectionHeader.border\":\"#20252c\",\"sideBarSectionHeader.foreground\":\"#0e1116\",\"sideBarTitle.foreground\":\"#0e1116\",\"statusBar.background\":\"#ffffff\",\"statusBar.border\":\"#20252c\",\"statusBar.debuggingBackground\":\"#a0111f\",\"statusBar.debuggingForeground\":\"#ffffff\",\"statusBar.focusBorder\":\"#0349b480\",\"statusBar.foreground\":\"#0e1116\",\"statusBar.noFolderBackground\":\"#ffffff\",\"statusBarItem.activeBackground\":\"#0e11161f\",\"statusBarItem.focusBorder\":\"#0349b4\",\"statusBarItem.hoverBackground\":\"#0e111614\",\"statusBarItem.prominentBackground\":\"#acb6c033\",\"statusBarItem.remoteBackground\":\"#e7ecf0\",\"statusBarItem.remoteForeground\":\"#0e1116\",\"symbolIcon.arrayForeground\":\"#702c00\",\"symbolIcon.booleanForeground\":\"#023b95\",\"symbolIcon.classForeground\":\"#702c00\",\"symbolIcon.colorForeground\":\"#032563\",\"symbolIcon.constantForeground\":\"#024c1a\",\"symbolIcon.constructorForeground\":\"#341763\",\"symbolIcon.enumeratorForeground\":\"#702c00\",\"symbolIcon.enumeratorMemberForeground\":\"#023b95\",\"symbolIcon.eventForeground\":\"#4b535d\",\"symbolIcon.fieldForeground\":\"#702c00\",\"symbolIcon.fileForeground\":\"#603700\",\"symbolIcon.folderForeground\":\"#603700\",\"symbolIcon.functionForeground\":\"#512598\",\"symbolIcon.interfaceForeground\":\"#702c00\",\"symbolIcon.keyForeground\":\"#023b95\",\"symbolIcon.keywordForeground\":\"#86061d\",\"symbolIcon.methodForeground\":\"#512598\",\"symbolIcon.moduleForeground\":\"#86061d\",\"symbolIcon.namespaceForeground\":\"#86061d\",\"symbolIcon.nullForeground\":\"#023b95\",\"symbolIcon.numberForeground\":\"#024c1a\",\"symbolIcon.objectForeground\":\"#702c00\",\"symbolIcon.operatorForeground\":\"#032563\",\"symbolIcon.packageForeground\":\"#702c00\",\"symbolIcon.propertyForeground\":\"#702c00\",\"symbolIcon.referenceForeground\":\"#023b95\",\"symbolIcon.snippetForeground\":\"#023b95\",\"symbolIcon.stringForeground\":\"#032563\",\"symbolIcon.structForeground\":\"#702c00\",\"symbolIcon.textForeground\":\"#032563\",\"symbolIcon.typeParameterForeground\":\"#032563\",\"symbolIcon.unitForeground\":\"#023b95\",\"symbolIcon.variableForeground\":\"#702c00\",\"tab.activeBackground\":\"#ffffff\",\"tab.activeBorder\":\"#ffffff\",\"tab.activeBorderTop\":\"#ef5b48\",\"tab.activeForeground\":\"#0e1116\",\"tab.border\":\"#20252c\",\"tab.hoverBackground\":\"#ffffff\",\"tab.inactiveBackground\":\"#ffffff\",\"tab.inactiveForeground\":\"#0e1116\",\"tab.unfocusedActiveBorder\":\"#ffffff\",\"tab.unfocusedActiveBorderTop\":\"#20252c\",\"tab.unfocusedHoverBackground\":\"#e7ecf0\",\"terminal.ansiBlack\":\"#0e1116\",\"terminal.ansiBlue\":\"#0349b4\",\"terminal.ansiBrightBlack\":\"#4b535d\",\"terminal.ansiBrightBlue\":\"#1168e3\",\"terminal.ansiBrightCyan\":\"#3192aa\",\"terminal.ansiBrightGreen\":\"#055d20\",\"terminal.ansiBrightMagenta\":\"#844ae7\",\"terminal.ansiBrightRed\":\"#86061d\",\"terminal.ansiBrightWhite\":\"#88929d\",\"terminal.ansiBrightYellow\":\"#4e2c00\",\"terminal.ansiCyan\":\"#1b7c83\",\"terminal.ansiGreen\":\"#024c1a\",\"terminal.ansiMagenta\":\"#622cbc\",\"terminal.ansiRed\":\"#a0111f\",\"terminal.ansiWhite\":\"#66707b\",\"terminal.ansiYellow\":\"#3f2200\",\"terminal.foreground\":\"#0e1116\",\"textBlockQuote.background\":\"#ffffff\",\"textBlockQuote.border\":\"#20252c\",\"textCodeBlock.background\":\"#acb6c033\",\"textLink.activeForeground\":\"#0349b4\",\"textLink.foreground\":\"#0349b4\",\"textPreformat.background\":\"#acb6c033\",\"textPreformat.foreground\":\"#0e1116\",\"textSeparator.foreground\":\"#88929d\",\"titleBar.activeBackground\":\"#ffffff\",\"titleBar.activeForeground\":\"#0e1116\",\"titleBar.border\":\"#20252c\",\"titleBar.inactiveBackground\":\"#ffffff\",\"titleBar.inactiveForeground\":\"#0e1116\",\"tree.indentGuidesStroke\":\"#88929d\",\"welcomePage.buttonBackground\":\"#e7ecf0\",\"welcomePage.buttonHoverBackground\":\"#ced5dc\"},\"displayName\":\"GitHub Light High Contrast\",\"name\":\"github-light-high-contrast\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#66707b\"}},{\"scope\":[\"constant.other.placeholder\",\"constant.character\"],\"settings\":{\"foreground\":\"#a0111f\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\",\"entity\"],\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":[\"entity.name\",\"meta.export.default\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#702c00\"}},{\"scope\":[\"variable.parameter.function\",\"meta.jsx.children\",\"meta.block\",\"meta.tag.attributes\",\"entity.name.constant\",\"meta.object.member\",\"meta.embedded.expression\"],\"settings\":{\"foreground\":\"#0e1116\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#622cbc\"}},{\"scope\":[\"entity.name.tag\",\"support.class.component\"],\"settings\":{\"foreground\":\"#024c1a\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#a0111f\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#a0111f\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#0e1116\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#032563\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#702c00\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#0e1116\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#6e011a\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#6e011a\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#6e011a\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#6e011a\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#a0111f\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#ffffff\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#6e011a\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#032563\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#032563\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#024c1a\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#024c1a\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#702c00\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#023b95\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#024c1a\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#0e1116\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#0e1116\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#fff0ee\",\"foreground\":\"#6e011a\"}},{\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#a0111f\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#d2fedb\",\"foreground\":\"#024c1a\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#ffc67b\",\"foreground\":\"#702c00\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#023b95\",\"foreground\":\"#e7ecf0\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#622cbc\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#023b95\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#4b535d\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#6e011a\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"foreground\":\"#032563\"}}],\"type\":\"light\"}"))
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shiki",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.22.0",
|
|
5
5
|
"description": "A beautiful Syntax Highlighter.",
|
|
6
6
|
"author": "Pine Wu <octref@gmail.com>; Anthony Fu <anthonyfu117@hotmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -113,17 +113,17 @@
|
|
|
113
113
|
"dist"
|
|
114
114
|
],
|
|
115
115
|
"dependencies": {
|
|
116
|
-
"@shikijs/vscode-textmate": "^9.
|
|
116
|
+
"@shikijs/vscode-textmate": "^9.3.0",
|
|
117
117
|
"@types/hast": "^3.0.4",
|
|
118
|
-
"@shikijs/core": "1.
|
|
119
|
-
"@shikijs/engine-javascript": "1.
|
|
120
|
-
"@shikijs/engine-oniguruma": "1.
|
|
121
|
-
"@shikijs/types": "1.
|
|
118
|
+
"@shikijs/core": "1.22.0",
|
|
119
|
+
"@shikijs/engine-javascript": "1.22.0",
|
|
120
|
+
"@shikijs/engine-oniguruma": "1.22.0",
|
|
121
|
+
"@shikijs/types": "1.22.0"
|
|
122
122
|
},
|
|
123
123
|
"devDependencies": {
|
|
124
124
|
"rollup-plugin-copy": "^3.5.0",
|
|
125
|
-
"tm-grammars": "^1.
|
|
126
|
-
"tm-themes": "^1.8.
|
|
125
|
+
"tm-grammars": "^1.18.0",
|
|
126
|
+
"tm-themes": "^1.8.7",
|
|
127
127
|
"vscode-oniguruma": "^1.7.0"
|
|
128
128
|
},
|
|
129
129
|
"scripts": {
|