diff --git a/package-lock.json b/package-lock.json index 2ec2faf..9fa96a1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-styled-components", - "version": "1.7.3", + "version": "1.7.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "vscode-styled-components", - "version": "1.7.3", + "version": "1.7.5", "license": "MIT", "dependencies": { "d3-color": "^3.0.1", diff --git a/package.json b/package.json index c7c7b45..2db0112 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-styled-components", "displayName": "vscode-styled-components", "description": "Syntax highlighting for styled-components", - "version": "1.7.4", + "version": "1.7.5", "publisher": "styled-components", "icon": "logo.png", "license": "MIT", diff --git a/src/insertColonCommand.ts b/src/insertColonCommand.ts index 04ac720..59d9788 100644 --- a/src/insertColonCommand.ts +++ b/src/insertColonCommand.ts @@ -1,5 +1,6 @@ -import { commands, window } from "vscode"; +import { commands, Position, Range, window } from "vscode"; import { getDefaultCSSDataProvider } from "vscode-css-languageservice"; +import { normalizeRegex, patterns } from "./patterns"; // Collect all CSS Functions, like matrix(), rotate() etc // There may be overlap so use Set to ensure unique values @@ -33,15 +34,47 @@ export const enterKeyEvent = commands.registerCommand( return; } - const cursorPosition = editor.selection; - const lineText = editor.document.lineAt(cursorPosition.start.line).text; + const selection = editor.selection; + const textBeforeCursor = editor.document.getText( + new Range(new Position(0, 0), selection.active) + ); + let insideAPattern = false; + + // determine if the cursor is inside a pattern + patterns.forEach((pattern) => { + try { + /** + * this regex will match if the cursor is inside the pattern + * more specifically, we've encountered the beginning but not the corresponding ending + * that should indicate that we're inside css + */ + const endRegex = new RegExp( + `(${normalizeRegex(pattern.begin)})(?![\\S\\s]*(${normalizeRegex( + pattern.end + )}))` + ); + + if (endRegex.test(textBeforeCursor)) { + insideAPattern = true; + } + } catch (e) { + // if the regex is invalid, skip it + console.warn("Failed to process regex:", e); + } + }); + + if (!insideAPattern) { + return; + } + + const lineText = editor.document.lineAt(selection.start.line).text; const lineTextList = lineText.trim().split(" "); const lastWordBeforeCursor = lineTextList[lineTextList.length - 1]; if (properties.find((value) => value.name === lastWordBeforeCursor)) { editor.edit((editBuilder) => { editBuilder.insert( - editor.document.lineAt(cursorPosition.active).range.end, + editor.document.lineAt(selection.active).range.end, ": ;" ); }); diff --git a/src/patterns.ts b/src/patterns.ts new file mode 100644 index 0000000..3fc5a60 --- /dev/null +++ b/src/patterns.ts @@ -0,0 +1,43 @@ +import rawPatternFile from "../syntaxes/styled-components.json"; +export const patterns = rawPatternFile.patterns; + +/** + * replaces POSIX regex with javascript compatible regex + * @param regex POSIX regex to convert + * @returns converted regex + */ +export const normalizeRegex = (regex: string) => { + // alnum + let out = regex.replace(/\[:alnum:\]/g, "a-zA-Z0-9"); + // alpha + out = out.replace(/\[:alpha:\]/g, "a-zA-Z"); + // ascii + out = out.replace(/\[:ascii:\]/g, "\\x00-\\x7F"); + // blank + out = out.replace(/\[:blank:\]/g, " \\t"); + // cntrl + out = out.replace(/\[:cntrl:\]/g, "\\x00-\\x1F\\x7F"); + // digit + out = out.replace(/\[:digit:\]/g, "0-9"); + // graph + out = out.replace(/\[:graph:\]/g, "\\x21-\\x7E"); + // lower + out = out.replace(/\[:lower:\]/g, "a-z"); + // print + out = out.replace(/\[:print:\]/g, "\\x20-\\x7E"); + // punct + out = out.replace( + /\[:punct:\]/g, + "!\"\\#$%&'()*+,\\-./:;<=>?@\\[\\\\\\]^_‘{|}~" + ); + // space + out = out.replace(/\[:space:\]/g, " \\t\\r\\n\\v\\f"); + // upper + out = out.replace(/\[:upper:\]/g, "A-Z"); + // word + out = out.replace(/\[:word:\]/g, "a-zA-Z0-9_"); + // xdigit + out = out.replace(/\[:xdigit:\]/g, "a-fA-F0-9"); + + return out; +}; diff --git a/src/tests/suite/colorize-results/arrow-function_js.json b/src/tests/suite/colorize-results/arrow-function_js.json index e2aa81c..67d0477 100644 --- a/src/tests/suite/colorize-results/arrow-function_js.json +++ b/src/tests/suite/colorize-results/arrow-function_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -140,7 +140,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -164,7 +164,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -176,7 +176,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -236,7 +236,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -248,7 +248,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -272,7 +272,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/attrs_js.json b/src/tests/suite/colorize-results/attrs_js.json index 4fe93e4..5ec4902 100644 --- a/src/tests/suite/colorize-results/attrs_js.json +++ b/src/tests/suite/colorize-results/attrs_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -128,7 +128,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -212,7 +212,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -224,7 +224,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -236,7 +236,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -272,7 +272,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -356,7 +356,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/comment_js.json b/src/tests/suite/colorize-results/comment_js.json index e059f96..5d3212b 100644 --- a/src/tests/suite/colorize-results/comment_js.json +++ b/src/tests/suite/colorize-results/comment_js.json @@ -8,7 +8,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -20,7 +20,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -32,7 +32,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -44,7 +44,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -56,7 +56,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -68,7 +68,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -80,7 +80,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -92,7 +92,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } } ] \ No newline at end of file diff --git a/src/tests/suite/colorize-results/component_js.json b/src/tests/suite/colorize-results/component_js.json index d16a0ca..20b4628 100644 --- a/src/tests/suite/colorize-results/component_js.json +++ b/src/tests/suite/colorize-results/component_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -80,7 +80,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -128,7 +128,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -224,7 +224,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/createGlobalStyle_js.json b/src/tests/suite/colorize-results/createGlobalStyle_js.json index c9a9400..a6334c4 100644 --- a/src/tests/suite/colorize-results/createGlobalStyle_js.json +++ b/src/tests/suite/colorize-results/createGlobalStyle_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -80,7 +80,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -92,7 +92,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -116,7 +116,7 @@ "dark_vs": "entity.name.tag.css: #D7BA7D", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag.css: #D7BA7D", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -200,7 +200,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -212,7 +212,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -224,7 +224,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -272,7 +272,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/css-prop_js.json b/src/tests/suite/colorize-results/css-prop_js.json index bd9bdec..6d5e7b1 100644 --- a/src/tests/suite/colorize-results/css-prop_js.json +++ b/src/tests/suite/colorize-results/css-prop_js.json @@ -8,7 +8,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -20,7 +20,7 @@ "dark_vs": "entity.name.tag: #569CD6", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag: #569CD6", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -68,7 +68,7 @@ "dark_vs": "punctuation.section.embedded: #569CD6", "light_vs": "punctuation.section.embedded: #0000FF", "hc_black": "punctuation.section.embedded: #569CD6", - "hc_light": "punctuation.section.embedded: #0000FF" + "hc_light": "punctuation.section.embedded: #0F4A85" } }, { @@ -80,7 +80,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -212,7 +212,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -236,7 +236,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -248,7 +248,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -260,7 +260,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -284,7 +284,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -308,7 +308,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -332,7 +332,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -356,7 +356,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -392,7 +392,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -404,7 +404,7 @@ "dark_vs": "punctuation.section.embedded: #569CD6", "light_vs": "punctuation.section.embedded: #0000FF", "hc_black": "punctuation.section.embedded: #569CD6", - "hc_light": "punctuation.section.embedded: #0000FF" + "hc_light": "punctuation.section.embedded: #0F4A85" } }, { @@ -416,7 +416,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/custom-at-rule_js.json b/src/tests/suite/colorize-results/custom-at-rule_js.json index c65f076..34edfaf 100644 --- a/src/tests/suite/colorize-results/custom-at-rule_js.json +++ b/src/tests/suite/colorize-results/custom-at-rule_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -116,7 +116,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -284,7 +284,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -296,7 +296,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -344,7 +344,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -356,7 +356,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -416,7 +416,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -428,7 +428,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -500,7 +500,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -512,7 +512,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -656,7 +656,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } } ] \ No newline at end of file diff --git a/src/tests/suite/colorize-results/dot-tag_js.json b/src/tests/suite/colorize-results/dot-tag_js.json index 91255ba..20af05f 100644 --- a/src/tests/suite/colorize-results/dot-tag_js.json +++ b/src/tests/suite/colorize-results/dot-tag_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -116,7 +116,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -260,7 +260,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -284,7 +284,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -296,7 +296,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -308,7 +308,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -332,7 +332,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -356,7 +356,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -380,7 +380,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -488,7 +488,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -512,7 +512,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -536,7 +536,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/export-default_js.json b/src/tests/suite/colorize-results/export-default_js.json index 525930f..74bf4c0 100644 --- a/src/tests/suite/colorize-results/export-default_js.json +++ b/src/tests/suite/colorize-results/export-default_js.json @@ -8,7 +8,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -32,7 +32,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -56,7 +56,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -104,7 +104,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -164,7 +164,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -176,7 +176,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -200,7 +200,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/extend_js.json b/src/tests/suite/colorize-results/extend_js.json index 2847ece..511f8b0 100644 --- a/src/tests/suite/colorize-results/extend_js.json +++ b/src/tests/suite/colorize-results/extend_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -116,7 +116,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -200,7 +200,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -224,7 +224,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -248,7 +248,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -332,7 +332,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -416,7 +416,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -440,7 +440,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -464,7 +464,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -608,7 +608,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -668,7 +668,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -680,7 +680,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -716,7 +716,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -740,7 +740,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -764,7 +764,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -812,7 +812,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -860,7 +860,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -920,7 +920,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -932,7 +932,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -956,7 +956,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } } ] \ No newline at end of file diff --git a/src/tests/suite/colorize-results/function-call-space_js.json b/src/tests/suite/colorize-results/function-call-space_js.json index 24fbc73..7b72441 100644 --- a/src/tests/suite/colorize-results/function-call-space_js.json +++ b/src/tests/suite/colorize-results/function-call-space_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -80,7 +80,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -140,7 +140,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -200,7 +200,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -212,7 +212,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -236,7 +236,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/function-call-with-css-helper_js.json b/src/tests/suite/colorize-results/function-call-with-css-helper_js.json index 76dd845..0dd3c48 100644 --- a/src/tests/suite/colorize-results/function-call-with-css-helper_js.json +++ b/src/tests/suite/colorize-results/function-call-with-css-helper_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -116,7 +116,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -140,7 +140,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -152,7 +152,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -176,7 +176,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -200,7 +200,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -224,7 +224,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -260,7 +260,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -284,7 +284,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -368,7 +368,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -392,7 +392,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -404,7 +404,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -416,7 +416,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -428,7 +428,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -440,7 +440,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -452,7 +452,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -476,7 +476,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -488,7 +488,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -500,7 +500,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -512,7 +512,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -524,7 +524,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -536,7 +536,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -548,7 +548,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -560,7 +560,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -572,7 +572,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -584,7 +584,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -608,7 +608,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -632,7 +632,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -716,7 +716,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -740,7 +740,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -752,7 +752,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -764,7 +764,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -776,7 +776,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -788,7 +788,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -800,7 +800,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -824,7 +824,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -836,7 +836,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -848,7 +848,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -860,7 +860,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -872,7 +872,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -884,7 +884,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -896,7 +896,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -908,7 +908,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -920,7 +920,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -932,7 +932,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -956,7 +956,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -980,7 +980,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -1064,7 +1064,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1088,7 +1088,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -1100,7 +1100,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -1112,7 +1112,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1124,7 +1124,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -1136,7 +1136,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1148,7 +1148,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1172,7 +1172,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1184,7 +1184,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1196,7 +1196,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -1208,7 +1208,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -1220,7 +1220,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1232,7 +1232,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1244,7 +1244,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1256,7 +1256,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1268,7 +1268,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -1280,7 +1280,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/function-call_js.json b/src/tests/suite/colorize-results/function-call_js.json index 147cc81..e5f6804 100644 --- a/src/tests/suite/colorize-results/function-call_js.json +++ b/src/tests/suite/colorize-results/function-call_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -80,7 +80,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -104,7 +104,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -152,7 +152,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -212,7 +212,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -224,7 +224,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -248,7 +248,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/function-media-queries_js.json b/src/tests/suite/colorize-results/function-media-queries_js.json index 517f5df..9a647fd 100644 --- a/src/tests/suite/colorize-results/function-media-queries_js.json +++ b/src/tests/suite/colorize-results/function-media-queries_js.json @@ -8,7 +8,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -20,7 +20,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -32,7 +32,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -56,7 +56,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -164,7 +164,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -236,7 +236,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -308,7 +308,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -344,7 +344,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -368,7 +368,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -409,14 +409,14 @@ }, { "c": "Object", - "t": "source.js meta.var.expr.js meta.function-call.js support.class.builtin.js", + "t": "source.js meta.var.expr.js meta.function-call.js variable.other.object.js", "r": { - "dark_plus": "support.class: #4EC9B0", - "light_plus": "support.class: #267F99", + "dark_plus": "variable: #9CDCFE", + "light_plus": "variable: #001080", "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", - "hc_black": "support.class: #4EC9B0", - "hc_light": "support.class: #267F99" + "hc_black": "variable: #9CDCFE", + "hc_light": "variable: #001080" } }, { @@ -440,7 +440,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -500,7 +500,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -608,7 +608,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -800,7 +800,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -824,7 +824,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -836,7 +836,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -860,7 +860,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -872,7 +872,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -944,7 +944,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -968,7 +968,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -992,7 +992,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1004,7 +1004,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1028,7 +1028,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1040,7 +1040,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -1052,7 +1052,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -1124,7 +1124,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -1136,7 +1136,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -1148,7 +1148,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1184,7 +1184,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1196,7 +1196,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -1256,7 +1256,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1316,7 +1316,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -1340,7 +1340,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -1436,7 +1436,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -1484,7 +1484,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -1496,7 +1496,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -1556,7 +1556,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1568,7 +1568,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1580,7 +1580,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1616,7 +1616,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -1628,7 +1628,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -1652,7 +1652,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -1712,7 +1712,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -1808,7 +1808,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1820,7 +1820,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1832,7 +1832,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1868,7 +1868,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -1928,7 +1928,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -2024,7 +2024,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2036,7 +2036,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2048,7 +2048,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2084,7 +2084,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2216,7 +2216,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -2228,7 +2228,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -2300,7 +2300,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -2312,7 +2312,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -2432,7 +2432,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -2444,7 +2444,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -2480,7 +2480,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -2492,7 +2492,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -2504,7 +2504,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -2564,7 +2564,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -2588,7 +2588,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2600,7 +2600,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -2612,7 +2612,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2636,7 +2636,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2660,7 +2660,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -2732,7 +2732,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -2756,7 +2756,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2768,7 +2768,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -2780,7 +2780,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2804,7 +2804,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2828,7 +2828,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -2852,7 +2852,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2876,7 +2876,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -2900,7 +2900,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -2984,7 +2984,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -3080,7 +3080,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -3104,7 +3104,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3128,7 +3128,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -3140,7 +3140,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3164,7 +3164,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3176,7 +3176,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3200,7 +3200,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3212,7 +3212,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3224,7 +3224,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -3236,7 +3236,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -3272,7 +3272,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -3296,7 +3296,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3308,7 +3308,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -3320,7 +3320,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3332,7 +3332,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -3344,7 +3344,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -3356,7 +3356,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -3368,7 +3368,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3380,7 +3380,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -3392,7 +3392,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3416,7 +3416,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3428,7 +3428,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3452,7 +3452,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3464,7 +3464,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3476,7 +3476,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -3488,7 +3488,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -3512,7 +3512,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -3536,7 +3536,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3548,7 +3548,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -3560,7 +3560,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3572,7 +3572,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -3584,7 +3584,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3596,7 +3596,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -3608,7 +3608,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3632,7 +3632,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3644,7 +3644,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3668,7 +3668,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3680,7 +3680,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3692,7 +3692,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -3704,7 +3704,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -3728,7 +3728,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -3752,7 +3752,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -3776,7 +3776,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -3872,7 +3872,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -3920,7 +3920,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -3932,7 +3932,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -3992,7 +3992,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -4004,7 +4004,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -4016,7 +4016,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -4052,7 +4052,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -4064,7 +4064,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -4088,7 +4088,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -4148,7 +4148,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -4244,7 +4244,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -4256,7 +4256,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -4268,7 +4268,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -4304,7 +4304,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -4364,7 +4364,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -4460,7 +4460,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -4472,7 +4472,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -4484,7 +4484,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -4520,7 +4520,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -4652,7 +4652,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -4664,7 +4664,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -4736,7 +4736,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -4748,7 +4748,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -4868,7 +4868,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -4880,7 +4880,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -4916,7 +4916,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -4928,7 +4928,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -4940,7 +4940,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -5000,7 +5000,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -5024,7 +5024,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -5036,7 +5036,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -5048,7 +5048,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -5072,7 +5072,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -5096,7 +5096,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -5168,7 +5168,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -5192,7 +5192,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -5204,7 +5204,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -5216,7 +5216,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -5240,7 +5240,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -5264,7 +5264,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -5288,7 +5288,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -5312,7 +5312,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -5336,7 +5336,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -5432,7 +5432,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -5480,7 +5480,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -5492,7 +5492,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -5552,7 +5552,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -5564,7 +5564,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -5576,7 +5576,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -5612,7 +5612,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -5624,7 +5624,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -5648,7 +5648,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -5708,7 +5708,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -5804,7 +5804,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -5816,7 +5816,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -5828,7 +5828,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -5864,7 +5864,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -5924,7 +5924,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -6020,7 +6020,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -6032,7 +6032,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -6044,7 +6044,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -6080,7 +6080,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -6212,7 +6212,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -6224,7 +6224,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -6296,7 +6296,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -6308,7 +6308,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -6428,7 +6428,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -6440,7 +6440,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -6476,7 +6476,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -6500,7 +6500,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6524,7 +6524,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -6536,7 +6536,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6560,7 +6560,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6572,7 +6572,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6596,7 +6596,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6608,7 +6608,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6620,7 +6620,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -6632,7 +6632,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -6668,7 +6668,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -6692,7 +6692,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6704,7 +6704,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -6716,7 +6716,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6728,7 +6728,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -6740,7 +6740,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -6752,7 +6752,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -6764,7 +6764,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6776,7 +6776,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -6788,7 +6788,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6812,7 +6812,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6824,7 +6824,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6848,7 +6848,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6860,7 +6860,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6872,7 +6872,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -6884,7 +6884,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -6908,7 +6908,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -6932,7 +6932,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6944,7 +6944,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -6956,7 +6956,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6968,7 +6968,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -6980,7 +6980,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -6992,7 +6992,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -7004,7 +7004,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -7028,7 +7028,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -7040,7 +7040,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -7064,7 +7064,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -7076,7 +7076,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -7088,7 +7088,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -7100,7 +7100,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -7136,7 +7136,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -7148,7 +7148,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -7160,7 +7160,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -7220,7 +7220,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -7244,7 +7244,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -7256,7 +7256,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -7268,7 +7268,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -7292,7 +7292,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -7316,7 +7316,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -7388,7 +7388,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -7412,7 +7412,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -7424,7 +7424,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -7436,7 +7436,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -7460,7 +7460,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -7484,7 +7484,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -7508,7 +7508,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/injectGlobal_js.json b/src/tests/suite/colorize-results/injectGlobal_js.json index a7432d6..e961985 100644 --- a/src/tests/suite/colorize-results/injectGlobal_js.json +++ b/src/tests/suite/colorize-results/injectGlobal_js.json @@ -8,7 +8,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -20,7 +20,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -44,7 +44,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -56,7 +56,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -140,7 +140,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -152,7 +152,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -164,7 +164,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -236,7 +236,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "support.function: #DCDCAA", - "hc_light": "support.function: #795E26" + "hc_light": "support.function: #5E2CBC" } }, { @@ -260,7 +260,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -272,7 +272,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -284,7 +284,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -356,7 +356,7 @@ "dark_vs": "entity.name.tag.css: #D7BA7D", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag.css: #D7BA7D", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -440,7 +440,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -488,7 +488,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/inside-function_js.json b/src/tests/suite/colorize-results/inside-function_js.json index 9ce3db2..28d0f2a 100644 --- a/src/tests/suite/colorize-results/inside-function_js.json +++ b/src/tests/suite/colorize-results/inside-function_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -104,7 +104,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -164,7 +164,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -224,7 +224,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -236,7 +236,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -272,7 +272,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/inside-method_js.json b/src/tests/suite/colorize-results/inside-method_js.json index 8d2a0be..356d710 100644 --- a/src/tests/suite/colorize-results/inside-method_js.json +++ b/src/tests/suite/colorize-results/inside-method_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.type: #4EC9B0", - "hc_light": "entity.name.type: #267F99" + "hc_light": "entity.name.type: #185E73" } }, { @@ -56,7 +56,7 @@ "dark_vs": "storage.modifier: #569CD6", "light_vs": "storage.modifier: #0000FF", "hc_black": "storage.modifier: #569CD6", - "hc_light": "storage.modifier: #0000FF" + "hc_light": "storage.modifier: #0F4A85" } }, { @@ -80,7 +80,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.type: #4EC9B0", - "hc_light": "entity.name.type: #267F99" + "hc_light": "entity.name.type: #185E73" } }, { @@ -104,7 +104,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.other.inherited-class: #4EC9B0", - "hc_light": "entity.other.inherited-class: #267F99" + "hc_light": "entity.other.inherited-class: #185E73" } }, { @@ -152,7 +152,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -224,7 +224,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -248,7 +248,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -296,7 +296,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -356,7 +356,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -368,7 +368,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -404,7 +404,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/keyframes_js.json b/src/tests/suite/colorize-results/keyframes_js.json index 51c12e1..8735859 100644 --- a/src/tests/suite/colorize-results/keyframes_js.json +++ b/src/tests/suite/colorize-results/keyframes_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -92,7 +92,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -116,7 +116,7 @@ "dark_vs": "entity.other.attribute-name.scss: #D7BA7D", "light_vs": "entity.other.attribute-name.scss: #800000", "hc_black": "entity.other.attribute-name.scss: #D7BA7D", - "hc_light": "entity.other.attribute-name.scss: #800000" + "hc_light": "entity.other.attribute-name.scss: #0F4A85" } }, { @@ -200,7 +200,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "support.function: #DCDCAA", - "hc_light": "support.function: #795E26" + "hc_light": "support.function: #5E2CBC" } }, { @@ -224,7 +224,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -236,7 +236,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -308,7 +308,7 @@ "dark_vs": "entity.other.attribute-name.scss: #D7BA7D", "light_vs": "entity.other.attribute-name.scss: #800000", "hc_black": "entity.other.attribute-name.scss: #D7BA7D", - "hc_light": "entity.other.attribute-name.scss: #800000" + "hc_light": "entity.other.attribute-name.scss: #0F4A85" } }, { @@ -392,7 +392,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "support.function: #DCDCAA", - "hc_light": "support.function: #795E26" + "hc_light": "support.function: #5E2CBC" } }, { @@ -416,7 +416,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -428,7 +428,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -488,7 +488,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -512,7 +512,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -536,7 +536,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -596,7 +596,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -620,7 +620,7 @@ "dark_vs": "entity.other.attribute-name.scss: #D7BA7D", "light_vs": "entity.other.attribute-name.scss: #800000", "hc_black": "entity.other.attribute-name.scss: #D7BA7D", - "hc_light": "entity.other.attribute-name.scss: #800000" + "hc_light": "entity.other.attribute-name.scss: #0F4A85" } }, { @@ -644,7 +644,7 @@ "dark_vs": "entity.other.attribute-name.scss: #D7BA7D", "light_vs": "entity.other.attribute-name.scss: #800000", "hc_black": "entity.other.attribute-name.scss: #D7BA7D", - "hc_light": "entity.other.attribute-name.scss: #800000" + "hc_light": "entity.other.attribute-name.scss: #0F4A85" } }, { @@ -728,7 +728,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -740,7 +740,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -788,7 +788,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/mixin_js.json b/src/tests/suite/colorize-results/mixin_js.json index 8cf2c44..6243058 100644 --- a/src/tests/suite/colorize-results/mixin_js.json +++ b/src/tests/suite/colorize-results/mixin_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -80,7 +80,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -92,7 +92,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -152,7 +152,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -164,7 +164,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -236,7 +236,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -248,7 +248,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -272,7 +272,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/nested-template-strings-with-helper_js.json b/src/tests/suite/colorize-results/nested-template-strings-with-helper_js.json index c8bcfba..133d006 100644 --- a/src/tests/suite/colorize-results/nested-template-strings-with-helper_js.json +++ b/src/tests/suite/colorize-results/nested-template-strings-with-helper_js.json @@ -8,7 +8,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -140,7 +140,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -164,7 +164,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -176,7 +176,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -188,7 +188,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -212,7 +212,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -236,7 +236,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -284,7 +284,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -296,7 +296,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -308,7 +308,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -332,7 +332,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -356,7 +356,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -380,7 +380,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -476,7 +476,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -524,7 +524,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -620,7 +620,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -644,7 +644,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -656,7 +656,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -668,7 +668,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -704,7 +704,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -776,7 +776,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -800,7 +800,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -812,7 +812,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -824,7 +824,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -848,7 +848,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -860,7 +860,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -872,7 +872,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -908,7 +908,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -932,7 +932,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -944,7 +944,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -956,7 +956,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -992,7 +992,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -1064,7 +1064,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -1088,7 +1088,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1100,7 +1100,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1112,7 +1112,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -1136,7 +1136,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -1148,7 +1148,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1160,7 +1160,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1196,7 +1196,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -1232,7 +1232,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -1304,7 +1304,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -1328,7 +1328,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1340,7 +1340,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1352,7 +1352,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -1376,7 +1376,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -1388,7 +1388,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1400,7 +1400,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1472,7 +1472,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -1496,7 +1496,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -1580,7 +1580,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1712,7 +1712,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "support.function: #DCDCAA", - "hc_light": "support.function: #795E26" + "hc_light": "support.function: #5E2CBC" } }, { @@ -1736,7 +1736,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -1760,7 +1760,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -1772,7 +1772,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -1856,7 +1856,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -1880,7 +1880,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -1952,7 +1952,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -1976,7 +1976,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -2084,7 +2084,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -2096,7 +2096,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2108,7 +2108,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -2120,7 +2120,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2132,7 +2132,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2144,7 +2144,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2156,7 +2156,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2168,7 +2168,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2180,7 +2180,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -2192,7 +2192,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2204,7 +2204,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2228,7 +2228,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2240,7 +2240,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2264,7 +2264,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2276,7 +2276,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2300,7 +2300,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2312,7 +2312,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2324,7 +2324,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -2348,7 +2348,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -2360,7 +2360,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2372,7 +2372,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2396,7 +2396,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2408,7 +2408,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2432,7 +2432,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2444,7 +2444,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2468,7 +2468,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2480,7 +2480,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2492,7 +2492,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -2504,7 +2504,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2516,7 +2516,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -2528,7 +2528,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2540,7 +2540,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2564,7 +2564,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2576,7 +2576,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2588,7 +2588,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "support.function: #DCDCAA", - "hc_light": "support.function: #795E26" + "hc_light": "support.function: #5E2CBC" } }, { @@ -2600,7 +2600,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2612,7 +2612,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -2624,7 +2624,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2636,7 +2636,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -2648,7 +2648,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -2660,7 +2660,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2672,7 +2672,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2684,7 +2684,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2696,7 +2696,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2708,7 +2708,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2720,7 +2720,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2732,7 +2732,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -2756,7 +2756,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -2768,7 +2768,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2780,7 +2780,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -2792,7 +2792,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2804,7 +2804,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2816,7 +2816,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2828,7 +2828,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2840,7 +2840,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2852,7 +2852,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -2864,7 +2864,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2876,7 +2876,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2900,7 +2900,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2912,7 +2912,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2936,7 +2936,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2948,7 +2948,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2972,7 +2972,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2984,7 +2984,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -2996,7 +2996,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "support.function: #DCDCAA", - "hc_light": "support.function: #795E26" + "hc_light": "support.function: #5E2CBC" } }, { @@ -3008,7 +3008,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3020,7 +3020,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -3032,7 +3032,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3044,7 +3044,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -3056,7 +3056,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -3068,7 +3068,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3080,7 +3080,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3092,7 +3092,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3116,7 +3116,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3128,7 +3128,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3140,7 +3140,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -3152,7 +3152,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3164,7 +3164,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -3176,7 +3176,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3188,7 +3188,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3212,7 +3212,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3224,7 +3224,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3248,7 +3248,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3260,7 +3260,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3272,7 +3272,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -3284,7 +3284,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3296,7 +3296,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -3308,7 +3308,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -3320,7 +3320,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -3344,7 +3344,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -3368,7 +3368,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -3452,7 +3452,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -3584,7 +3584,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "support.function: #DCDCAA", - "hc_light": "support.function: #795E26" + "hc_light": "support.function: #5E2CBC" } }, { @@ -3608,7 +3608,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -3632,7 +3632,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -3644,7 +3644,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -3728,7 +3728,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -3752,7 +3752,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -3824,7 +3824,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -3848,7 +3848,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -3872,7 +3872,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -3896,7 +3896,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -3920,7 +3920,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { diff --git a/src/tests/suite/colorize-results/nextStyle_js.json b/src/tests/suite/colorize-results/nextStyle_js.json index 4317ab2..4e4bd2e 100644 --- a/src/tests/suite/colorize-results/nextStyle_js.json +++ b/src/tests/suite/colorize-results/nextStyle_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -104,7 +104,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -152,7 +152,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -164,7 +164,7 @@ "dark_vs": "entity.name.tag: #569CD6", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag: #569CD6", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -212,7 +212,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -224,7 +224,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -236,7 +236,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -248,7 +248,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -272,7 +272,7 @@ "dark_vs": "punctuation.section.embedded: #569CD6", "light_vs": "punctuation.section.embedded: #0000FF", "hc_black": "punctuation.section.embedded: #569CD6", - "hc_light": "punctuation.section.embedded: #0000FF" + "hc_light": "punctuation.section.embedded: #0F4A85" } }, { @@ -284,7 +284,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -296,7 +296,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -308,7 +308,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -320,7 +320,7 @@ "dark_vs": "punctuation.section.embedded: #569CD6", "light_vs": "punctuation.section.embedded: #0000FF", "hc_black": "punctuation.section.embedded: #569CD6", - "hc_light": "punctuation.section.embedded: #0000FF" + "hc_light": "punctuation.section.embedded: #0F4A85" } }, { @@ -344,7 +344,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -356,7 +356,7 @@ "dark_vs": "entity.name.tag: #569CD6", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag: #569CD6", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -416,7 +416,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -428,7 +428,7 @@ "dark_vs": "punctuation.section.embedded: #569CD6", "light_vs": "punctuation.section.embedded: #0000FF", "hc_black": "punctuation.section.embedded: #569CD6", - "hc_light": "punctuation.section.embedded: #0000FF" + "hc_light": "punctuation.section.embedded: #0F4A85" } }, { @@ -440,7 +440,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -452,7 +452,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -464,7 +464,7 @@ "dark_vs": "entity.other.attribute-name.class.css: #D7BA7D", "light_vs": "entity.other.attribute-name.class.css: #800000", "hc_black": "entity.other.attribute-name.class.css: #D7BA7D", - "hc_light": "entity.other.attribute-name.class.css: #800000" + "hc_light": "entity.other.attribute-name.class.css: #0F4A85" } }, { @@ -476,7 +476,7 @@ "dark_vs": "entity.other.attribute-name.class.css: #D7BA7D", "light_vs": "entity.other.attribute-name.class.css: #800000", "hc_black": "entity.other.attribute-name.class.css: #D7BA7D", - "hc_light": "entity.other.attribute-name.class.css: #800000" + "hc_light": "entity.other.attribute-name.class.css: #0F4A85" } }, { @@ -488,7 +488,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -500,7 +500,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -512,7 +512,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -536,7 +536,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -548,7 +548,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -560,7 +560,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -572,7 +572,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -584,7 +584,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -596,7 +596,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -608,7 +608,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -620,7 +620,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -632,7 +632,7 @@ "dark_vs": "entity.name.tag.css: #D7BA7D", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag.css: #D7BA7D", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -644,7 +644,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -656,7 +656,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -668,7 +668,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -692,7 +692,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -704,7 +704,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -728,7 +728,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -740,7 +740,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -752,7 +752,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -764,7 +764,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -776,7 +776,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -788,7 +788,7 @@ "dark_vs": "punctuation.section.embedded: #569CD6", "light_vs": "punctuation.section.embedded: #0000FF", "hc_black": "punctuation.section.embedded: #569CD6", - "hc_light": "punctuation.section.embedded: #0000FF" + "hc_light": "punctuation.section.embedded: #0F4A85" } }, { @@ -800,7 +800,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -812,7 +812,7 @@ "dark_vs": "entity.name.tag: #569CD6", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag: #569CD6", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -824,7 +824,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -848,7 +848,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -860,7 +860,7 @@ "dark_vs": "entity.name.tag: #569CD6", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag: #569CD6", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -896,7 +896,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -908,7 +908,7 @@ "dark_vs": "punctuation.section.embedded: #569CD6", "light_vs": "punctuation.section.embedded: #0000FF", "hc_black": "punctuation.section.embedded: #569CD6", - "hc_light": "punctuation.section.embedded: #0000FF" + "hc_light": "punctuation.section.embedded: #0F4A85" } }, { @@ -920,7 +920,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -932,7 +932,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -944,7 +944,7 @@ "dark_vs": "entity.other.attribute-name.class.css: #D7BA7D", "light_vs": "entity.other.attribute-name.class.css: #800000", "hc_black": "entity.other.attribute-name.class.css: #D7BA7D", - "hc_light": "entity.other.attribute-name.class.css: #800000" + "hc_light": "entity.other.attribute-name.class.css: #0F4A85" } }, { @@ -956,7 +956,7 @@ "dark_vs": "entity.other.attribute-name.class.css: #D7BA7D", "light_vs": "entity.other.attribute-name.class.css: #800000", "hc_black": "entity.other.attribute-name.class.css: #D7BA7D", - "hc_light": "entity.other.attribute-name.class.css: #800000" + "hc_light": "entity.other.attribute-name.class.css: #0F4A85" } }, { @@ -968,7 +968,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -980,7 +980,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -992,7 +992,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1016,7 +1016,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1028,7 +1028,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1040,7 +1040,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -1052,7 +1052,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -1064,7 +1064,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1076,7 +1076,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1088,7 +1088,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1100,7 +1100,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1112,7 +1112,7 @@ "dark_vs": "entity.name.tag.css: #D7BA7D", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag.css: #D7BA7D", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -1124,7 +1124,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1136,7 +1136,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1148,7 +1148,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1172,7 +1172,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1184,7 +1184,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1208,7 +1208,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1220,7 +1220,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1232,7 +1232,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1244,7 +1244,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1256,7 +1256,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1268,7 +1268,7 @@ "dark_vs": "punctuation.section.embedded: #569CD6", "light_vs": "punctuation.section.embedded: #0000FF", "hc_black": "punctuation.section.embedded: #569CD6", - "hc_light": "punctuation.section.embedded: #0000FF" + "hc_light": "punctuation.section.embedded: #0F4A85" } }, { @@ -1280,7 +1280,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -1292,7 +1292,7 @@ "dark_vs": "entity.name.tag: #569CD6", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag: #569CD6", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -1304,7 +1304,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -1328,7 +1328,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -1340,7 +1340,7 @@ "dark_vs": "entity.name.tag: #569CD6", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag: #569CD6", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -1400,7 +1400,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -1412,7 +1412,7 @@ "dark_vs": "punctuation.section.embedded: #569CD6", "light_vs": "punctuation.section.embedded: #0000FF", "hc_black": "punctuation.section.embedded: #569CD6", - "hc_light": "punctuation.section.embedded: #0000FF" + "hc_light": "punctuation.section.embedded: #0F4A85" } }, { @@ -1424,7 +1424,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1436,7 +1436,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1448,7 +1448,7 @@ "dark_vs": "entity.other.attribute-name.class.css: #D7BA7D", "light_vs": "entity.other.attribute-name.class.css: #800000", "hc_black": "entity.other.attribute-name.class.css: #D7BA7D", - "hc_light": "entity.other.attribute-name.class.css: #800000" + "hc_light": "entity.other.attribute-name.class.css: #0F4A85" } }, { @@ -1460,7 +1460,7 @@ "dark_vs": "entity.other.attribute-name.class.css: #D7BA7D", "light_vs": "entity.other.attribute-name.class.css: #800000", "hc_black": "entity.other.attribute-name.class.css: #D7BA7D", - "hc_light": "entity.other.attribute-name.class.css: #800000" + "hc_light": "entity.other.attribute-name.class.css: #0F4A85" } }, { @@ -1472,7 +1472,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1484,7 +1484,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1496,7 +1496,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1520,7 +1520,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1532,7 +1532,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1544,7 +1544,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -1556,7 +1556,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -1568,7 +1568,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1580,7 +1580,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1592,7 +1592,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1604,7 +1604,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1616,7 +1616,7 @@ "dark_vs": "entity.name.tag.css: #D7BA7D", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag.css: #D7BA7D", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -1628,7 +1628,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1640,7 +1640,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1652,7 +1652,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1676,7 +1676,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1688,7 +1688,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1712,7 +1712,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1724,7 +1724,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1736,7 +1736,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1748,7 +1748,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -1760,7 +1760,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1772,7 +1772,7 @@ "dark_vs": "punctuation.section.embedded: #569CD6", "light_vs": "punctuation.section.embedded: #0000FF", "hc_black": "punctuation.section.embedded: #569CD6", - "hc_light": "punctuation.section.embedded: #0000FF" + "hc_light": "punctuation.section.embedded: #0F4A85" } }, { @@ -1784,7 +1784,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -1796,7 +1796,7 @@ "dark_vs": "entity.name.tag: #569CD6", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag: #569CD6", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -1808,7 +1808,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -1832,7 +1832,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -1844,7 +1844,7 @@ "dark_vs": "entity.name.tag: #569CD6", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag: #569CD6", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -1880,7 +1880,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -1892,7 +1892,7 @@ "dark_vs": "punctuation.section.embedded: #569CD6", "light_vs": "punctuation.section.embedded: #0000FF", "hc_black": "punctuation.section.embedded: #569CD6", - "hc_light": "punctuation.section.embedded: #0000FF" + "hc_light": "punctuation.section.embedded: #0F4A85" } }, { @@ -1904,7 +1904,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1916,7 +1916,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1928,7 +1928,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1940,7 +1940,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1952,7 +1952,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1964,7 +1964,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1976,7 +1976,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1988,7 +1988,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2000,7 +2000,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2012,7 +2012,7 @@ "dark_vs": "punctuation.section.embedded: #569CD6", "light_vs": "punctuation.section.embedded: #0000FF", "hc_black": "punctuation.section.embedded: #569CD6", - "hc_light": "punctuation.section.embedded: #0000FF" + "hc_light": "punctuation.section.embedded: #0F4A85" } }, { @@ -2024,7 +2024,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -2036,7 +2036,7 @@ "dark_vs": "entity.name.tag: #569CD6", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag: #569CD6", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -2048,7 +2048,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -2072,7 +2072,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -2084,7 +2084,7 @@ "dark_vs": "entity.name.tag: #569CD6", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag: #569CD6", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -2096,7 +2096,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -2108,7 +2108,7 @@ "dark_vs": "punctuation.section.embedded: #569CD6", "light_vs": "punctuation.section.embedded: #0000FF", "hc_black": "punctuation.section.embedded: #569CD6", - "hc_light": "punctuation.section.embedded: #0000FF" + "hc_light": "punctuation.section.embedded: #0F4A85" } }, { @@ -2120,7 +2120,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2132,7 +2132,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2144,7 +2144,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2156,7 +2156,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2168,7 +2168,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2180,7 +2180,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2192,7 +2192,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2204,7 +2204,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2216,7 +2216,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -2228,7 +2228,7 @@ "dark_vs": "punctuation.section.embedded: #569CD6", "light_vs": "punctuation.section.embedded: #0000FF", "hc_black": "punctuation.section.embedded: #569CD6", - "hc_light": "punctuation.section.embedded: #0000FF" + "hc_light": "punctuation.section.embedded: #0F4A85" } }, { @@ -2240,7 +2240,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -2252,7 +2252,7 @@ "dark_vs": "entity.name.tag: #569CD6", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag: #569CD6", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -2264,7 +2264,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -2288,7 +2288,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { @@ -2300,7 +2300,7 @@ "dark_vs": "entity.name.tag: #569CD6", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag: #569CD6", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -2312,7 +2312,7 @@ "dark_vs": "punctuation.definition.tag: #808080", "light_vs": "punctuation.definition.tag: #800000", "hc_black": "punctuation.definition.tag: #808080", - "hc_light": "punctuation.definition.tag: #800000" + "hc_light": "punctuation.definition.tag: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/object-literal_js.json b/src/tests/suite/colorize-results/object-literal_js.json index f68b79e..b4c42aa 100644 --- a/src/tests/suite/colorize-results/object-literal_js.json +++ b/src/tests/suite/colorize-results/object-literal_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -152,7 +152,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -212,7 +212,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -224,7 +224,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -344,7 +344,7 @@ "dark_vs": "entity.name.tag.css: #D7BA7D", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag.css: #D7BA7D", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -380,7 +380,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -404,7 +404,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -416,7 +416,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -428,7 +428,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -440,7 +440,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -452,7 +452,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -464,7 +464,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -476,7 +476,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -512,7 +512,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -536,7 +536,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -548,7 +548,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -560,7 +560,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -572,7 +572,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -584,7 +584,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -596,7 +596,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -608,7 +608,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -632,7 +632,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -656,7 +656,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -668,7 +668,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -680,7 +680,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -692,7 +692,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -704,7 +704,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -716,7 +716,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -728,7 +728,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -764,7 +764,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -776,7 +776,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -872,7 +872,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/segmented-component_js.json b/src/tests/suite/colorize-results/segmented-component_js.json index 6e643f5..79e5ac0 100644 --- a/src/tests/suite/colorize-results/segmented-component_js.json +++ b/src/tests/suite/colorize-results/segmented-component_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -80,7 +80,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -152,7 +152,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -212,7 +212,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -224,7 +224,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -248,7 +248,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/string-tagname_js.json b/src/tests/suite/colorize-results/string-tagname_js.json index 13fea10..f646e40 100644 --- a/src/tests/suite/colorize-results/string-tagname_js.json +++ b/src/tests/suite/colorize-results/string-tagname_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -80,7 +80,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -104,7 +104,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -116,7 +116,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -128,7 +128,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -152,7 +152,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -248,7 +248,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/stylesheet_js.json b/src/tests/suite/colorize-results/stylesheet_js.json index d0af6f7..c9de96d 100644 --- a/src/tests/suite/colorize-results/stylesheet_js.json +++ b/src/tests/suite/colorize-results/stylesheet_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -80,7 +80,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -92,7 +92,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -116,7 +116,7 @@ "dark_vs": "entity.name.tag.css: #D7BA7D", "light_vs": "entity.name.tag: #800000", "hc_black": "entity.name.tag.css: #D7BA7D", - "hc_light": "entity.name.tag: #800000" + "hc_light": "entity.name.tag: #0F4A85" } }, { @@ -200,7 +200,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -212,7 +212,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -224,7 +224,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -272,7 +272,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/theme-function_js.json b/src/tests/suite/colorize-results/theme-function_js.json index f41a058..43d861b 100644 --- a/src/tests/suite/colorize-results/theme-function_js.json +++ b/src/tests/suite/colorize-results/theme-function_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -104,7 +104,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -200,7 +200,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -224,7 +224,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -284,7 +284,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -308,7 +308,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -332,7 +332,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -356,7 +356,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -428,7 +428,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -440,7 +440,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -464,7 +464,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/typescript-attr_ts.json b/src/tests/suite/colorize-results/typescript-attr_ts.json index 2ef0e2c..06f2dd9 100644 --- a/src/tests/suite/colorize-results/typescript-attr_ts.json +++ b/src/tests/suite/colorize-results/typescript-attr_ts.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -128,7 +128,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -152,7 +152,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.type: #4EC9B0", - "hc_light": "entity.name.type: #267F99" + "hc_light": "entity.name.type: #185E73" } }, { @@ -248,7 +248,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -260,7 +260,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -272,7 +272,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -320,7 +320,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -332,7 +332,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "entity.name.type: #4EC9B0", - "hc_light": "entity.name.type: #267F99" + "hc_light": "entity.name.type: #185E73" } }, { @@ -344,7 +344,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -356,7 +356,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -452,7 +452,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/typescript-css_ts.json b/src/tests/suite/colorize-results/typescript-css_ts.json index 1b2fee2..6d83a31 100644 --- a/src/tests/suite/colorize-results/typescript-css_ts.json +++ b/src/tests/suite/colorize-results/typescript-css_ts.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -80,7 +80,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -104,7 +104,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.type: #4EC9B0", - "hc_light": "entity.name.type: #267F99" + "hc_light": "entity.name.type: #185E73" } }, { @@ -128,7 +128,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -188,7 +188,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -212,7 +212,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -224,7 +224,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -236,7 +236,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -248,7 +248,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -272,7 +272,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -296,7 +296,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -320,7 +320,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -332,7 +332,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -344,7 +344,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -368,7 +368,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -380,7 +380,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -392,7 +392,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -404,7 +404,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -440,7 +440,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/typescript-emotion_ts.json b/src/tests/suite/colorize-results/typescript-emotion_ts.json index f961767..42118a5 100644 --- a/src/tests/suite/colorize-results/typescript-emotion_ts.json +++ b/src/tests/suite/colorize-results/typescript-emotion_ts.json @@ -8,7 +8,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -20,7 +20,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -32,7 +32,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -44,7 +44,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -56,7 +56,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -80,7 +80,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -128,7 +128,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -152,7 +152,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.type: #4EC9B0", - "hc_light": "entity.name.type: #267F99" + "hc_light": "entity.name.type: #185E73" } }, { @@ -188,7 +188,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -200,7 +200,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -212,7 +212,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -248,7 +248,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -260,7 +260,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -272,7 +272,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -296,7 +296,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -356,7 +356,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -368,7 +368,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -440,7 +440,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -452,7 +452,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -476,7 +476,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -488,7 +488,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -500,7 +500,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -512,7 +512,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -536,7 +536,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -560,7 +560,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -584,7 +584,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } } ] \ No newline at end of file diff --git a/src/tests/suite/colorize-results/typescript-multiline_ts.json b/src/tests/suite/colorize-results/typescript-multiline_ts.json index 13c1fb7..56776e0 100644 --- a/src/tests/suite/colorize-results/typescript-multiline_ts.json +++ b/src/tests/suite/colorize-results/typescript-multiline_ts.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -104,7 +104,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -188,7 +188,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "support.type: #4EC9B0", - "hc_light": "support.type: #267F99" + "hc_light": "support.type: #185E73" } }, { @@ -224,7 +224,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -308,7 +308,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/typescript-tag_ts.json b/src/tests/suite/colorize-results/typescript-tag_ts.json index cac48a4..4e4380c 100644 --- a/src/tests/suite/colorize-results/typescript-tag_ts.json +++ b/src/tests/suite/colorize-results/typescript-tag_ts.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -152,7 +152,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -212,7 +212,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -236,7 +236,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -248,7 +248,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -260,7 +260,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -272,7 +272,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -296,7 +296,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -320,7 +320,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -344,7 +344,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -356,7 +356,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -368,7 +368,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -392,7 +392,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -404,7 +404,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -416,7 +416,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -428,7 +428,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -464,7 +464,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/typescript_ts.json b/src/tests/suite/colorize-results/typescript_ts.json index 55cf7bc..8169562 100644 --- a/src/tests/suite/colorize-results/typescript_ts.json +++ b/src/tests/suite/colorize-results/typescript_ts.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -80,7 +80,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -104,7 +104,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.type: #4EC9B0", - "hc_light": "entity.name.type: #267F99" + "hc_light": "entity.name.type: #185E73" } }, { @@ -140,7 +140,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -152,7 +152,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -164,7 +164,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -188,7 +188,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -248,7 +248,7 @@ "dark_vs": "punctuation.definition.template-expression.begin: #569CD6", "light_vs": "punctuation.definition.template-expression.begin: #0000FF", "hc_black": "punctuation.definition.template-expression.begin: #569CD6", - "hc_light": "punctuation.definition.template-expression.begin: #0000FF" + "hc_light": "punctuation.definition.template-expression.begin: #0F4A85" } }, { @@ -272,7 +272,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -284,7 +284,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -296,7 +296,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -308,7 +308,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -332,7 +332,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -356,7 +356,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -380,7 +380,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -392,7 +392,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -404,7 +404,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -428,7 +428,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -440,7 +440,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -452,7 +452,7 @@ "dark_vs": "meta.embedded: #D4D4D4", "light_vs": "meta.embedded: #000000", "hc_black": "meta.embedded: #FFFFFF", - "hc_light": "meta.embedded: #000000" + "hc_light": "meta.embedded: #292929" } }, { @@ -464,7 +464,7 @@ "dark_vs": "punctuation.definition.template-expression.end: #569CD6", "light_vs": "punctuation.definition.template-expression.end: #0000FF", "hc_black": "punctuation.definition.template-expression.end: #569CD6", - "hc_light": "punctuation.definition.template-expression.end: #0000FF" + "hc_light": "punctuation.definition.template-expression.end: #0F4A85" } }, { @@ -500,7 +500,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/variable-assignment_js.json b/src/tests/suite/colorize-results/variable-assignment_js.json index 6070303..01dfa3d 100644 --- a/src/tests/suite/colorize-results/variable-assignment_js.json +++ b/src/tests/suite/colorize-results/variable-assignment_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -104,7 +104,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -116,7 +116,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -176,7 +176,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -188,7 +188,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -212,7 +212,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -248,7 +248,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -260,7 +260,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -272,7 +272,7 @@ "dark_vs": "comment: #6A9955", "light_vs": "comment: #008000", "hc_black": "comment: #7CA668", - "hc_light": "comment: #008000" + "hc_light": "comment: #515151" } }, { @@ -332,7 +332,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -392,7 +392,7 @@ "dark_vs": "constant.numeric: #B5CEA8", "light_vs": "constant.numeric: #098658", "hc_black": "constant.numeric: #B5CEA8", - "hc_light": "constant.numeric: #098658" + "hc_light": "constant.numeric: #096D48" } }, { @@ -404,7 +404,7 @@ "dark_vs": "keyword.other.unit: #B5CEA8", "light_vs": "keyword.other.unit: #098658", "hc_black": "keyword.other.unit: #B5CEA8", - "hc_light": "keyword.other.unit: #098658" + "hc_light": "keyword.other.unit: #096D48" } }, { @@ -440,7 +440,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/white-space-property_js.json b/src/tests/suite/colorize-results/white-space-property_js.json index e7f9c46..a59e6d1 100644 --- a/src/tests/suite/colorize-results/white-space-property_js.json +++ b/src/tests/suite/colorize-results/white-space-property_js.json @@ -8,7 +8,7 @@ "dark_vs": "keyword.control: #569CD6", "light_vs": "keyword.control: #0000FF", "hc_black": "keyword.control: #C586C0", - "hc_light": "keyword.control: #AF00DB" + "hc_light": "keyword.control: #B5200D" } }, { @@ -32,7 +32,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -56,7 +56,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -140,7 +140,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -224,7 +224,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/withComponent_js.json b/src/tests/suite/colorize-results/withComponent_js.json index d8c1f30..d9adb4d 100644 --- a/src/tests/suite/colorize-results/withComponent_js.json +++ b/src/tests/suite/colorize-results/withComponent_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -104,7 +104,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -128,7 +128,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -140,7 +140,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -152,7 +152,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -200,7 +200,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -284,7 +284,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -308,7 +308,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -332,7 +332,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -404,7 +404,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -428,7 +428,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -440,7 +440,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -452,7 +452,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -476,7 +476,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -560,7 +560,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -584,7 +584,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -608,7 +608,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -680,7 +680,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -716,7 +716,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -728,7 +728,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -740,7 +740,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -764,7 +764,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -776,7 +776,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -788,7 +788,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -812,7 +812,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -836,7 +836,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -908,7 +908,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -956,7 +956,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -1040,7 +1040,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/src/tests/suite/colorize-results/withConfig_js.json b/src/tests/suite/colorize-results/withConfig_js.json index 0f3ad35..3a30830 100644 --- a/src/tests/suite/colorize-results/withConfig_js.json +++ b/src/tests/suite/colorize-results/withConfig_js.json @@ -8,7 +8,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -32,7 +32,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "variable: #9CDCFE", - "hc_light": "variable.other.constant: #0070C1" + "hc_light": "variable.other.constant: #02715D" } }, { @@ -128,7 +128,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -176,7 +176,7 @@ "dark_vs": "default: #D4D4D4", "light_vs": "default: #000000", "hc_black": "entity.name.function: #DCDCAA", - "hc_light": "entity.name.function: #795E26" + "hc_light": "entity.name.function: #5E2CBC" } }, { @@ -248,7 +248,7 @@ "dark_vs": "storage.type: #569CD6", "light_vs": "storage.type: #0000FF", "hc_black": "storage.type: #569CD6", - "hc_light": "storage.type: #0000FF" + "hc_light": "storage.type: #0F4A85" } }, { @@ -272,7 +272,7 @@ "dark_vs": "constant.language: #569CD6", "light_vs": "constant.language: #0000FF", "hc_black": "constant.language: #569CD6", - "hc_light": "constant.language: #0000FF" + "hc_light": "constant.language: #0F4A85" } }, { @@ -308,7 +308,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { @@ -392,7 +392,7 @@ "dark_vs": "string: #CE9178", "light_vs": "string: #A31515", "hc_black": "string: #CE9178", - "hc_light": "string: #A31515" + "hc_light": "string: #0F4A85" } }, { diff --git a/tsconfig.json b/tsconfig.json index dc7b282..f395cf9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "module": "commonjs", "target": "ES2020", "outDir": "dist", - "rootDir": "src", + "rootDir": ".", "lib": ["ES2020"], "sourceMap": true, "resolveJsonModule": true,