From 988d7e65ce7724723d30ab39ad0980ae2bbb131a Mon Sep 17 00:00:00 2001 From: Nilay Majorwar Date: Wed, 16 Feb 2022 20:45:01 +0530 Subject: [PATCH] Minor fix and editor color change --- scripts/new-lang-template/common.ts | 8 ++++---- ui/code-editor/themes/dark.json | 2 +- ui/code-editor/themes/light.json | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/new-lang-template/common.ts b/scripts/new-lang-template/common.ts index 8665b19..67a5c2d 100644 --- a/scripts/new-lang-template/common.ts +++ b/scripts/new-lang-template/common.ts @@ -17,10 +17,10 @@ export const sampleProgram = [ export const editorTokensProvider: MonacoTokensProvider = { tokenizer: { root: [ - [/i/, "orange"], - [/d/, "red"], - [/s/, "blue"], - [/o/, "green"], + [/i/, "variable"], + [/d/, "keyword"], + [/s/, "constant"], + [/o/, "operator"], ], }, defaultToken: "comment", diff --git a/ui/code-editor/themes/dark.json b/ui/code-editor/themes/dark.json index ffdf9c9..c7dc9a6 100644 --- a/ui/code-editor/themes/dark.json +++ b/ui/code-editor/themes/dark.json @@ -88,7 +88,7 @@ { "token": "meta", "foreground": "61AFEF", "note": "blue" }, { "token": "key", "foreground": "EF596F", "note": "red" }, { "token": "operators", "foreground": "3FA6DA", "note": "cerulean" }, - { "token": "attribute", "foreground": "F0B726", "note": "gold" }, + { "token": "attribute", "foreground": "EC9A3C", "note": "orange" }, { "token": "string", "foreground": "72CA9B", "note": "green" }, { "token": "keyword", "foreground": "D55FDE", "note": "violet" }, { "token": "comment", "foreground": "#8F99A8", "fontStyle": "italic" } diff --git a/ui/code-editor/themes/light.json b/ui/code-editor/themes/light.json index ef4ba56..b100047 100644 --- a/ui/code-editor/themes/light.json +++ b/ui/code-editor/themes/light.json @@ -91,7 +91,7 @@ { "token": "meta", "foreground": "2D72D2", "note": "blue" }, { "token": "key", "foreground": "CD4246", "note": "red" }, { "token": "operators", "foreground": "147EB3", "note": "cerulean" }, - { "token": "attribute", "foreground": "D1980B", "note": "gold" }, + { "token": "attribute", "foreground": "C87619", "note": "orange" }, { "token": "string", "foreground": "238551", "note": "green" }, { "token": "keyword", "foreground": "9D3F9D", "note": "violet" }, { "token": "comment", "foreground": "5F6B7C", "fontStyle": "italic" }