Bracket highlighting per Solarized example js images

This commit is contained in:
Jeff Baars 2021-10-18 16:58:23 -07:00
parent fd9d8d5c8a
commit ab60b411ca

@ -77,12 +77,12 @@ export async function loadThemes(monaco: { editor: any }): Promise<void> {
token: "comment", token: "comment",
}, },
{ {
foreground: "2aa198", foreground: "00afaf",
token: "string", token: "string",
}, },
{ {
token: "number", token: "number",
foreground: "2aa198", foreground: "00afaf",
}, },
{ {
token: "otherkeyvars", token: "otherkeyvars",
@ -116,6 +116,14 @@ export async function loadThemes(monaco: { editor: any }): Promise<void> {
token: "type.identifier.js", token: "type.identifier.js",
foreground: "b58900", foreground: "b58900",
}, },
{
token: "delimiter.square.js",
foreground: "0087ff",
},
{
token: "delimiter.bracket.js",
foreground: "0087ff",
},
{ {
token: "this", token: "this",
foreground: "cb4b16", foreground: "cb4b16",
@ -186,6 +194,14 @@ export async function loadThemes(monaco: { editor: any }): Promise<void> {
token: "type.identifier.js", token: "type.identifier.js",
foreground: "b58900", foreground: "b58900",
}, },
{
token: "delimiter.square.js",
foreground: "0087ff",
},
{
token: "delimiter.bracket.js",
foreground: "0087ff",
},
{ {
token: "this", token: "this",
foreground: "cb4b16", foreground: "cb4b16",