From 24c384c4a80a97bd624cda63c2f9a1cf05d9d60b Mon Sep 17 00:00:00 2001 From: Nilay Majorwar Date: Thu, 3 Feb 2022 22:38:41 +0530 Subject: [PATCH] Add operators token to editor themes --- ui/code-editor/themes/dark.json | 4 ++-- ui/code-editor/themes/light.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/code-editor/themes/dark.json b/ui/code-editor/themes/dark.json index 6f0882e..9817eaf 100644 --- a/ui/code-editor/themes/dark.json +++ b/ui/code-editor/themes/dark.json @@ -85,8 +85,8 @@ { "token": "tag", "foreground": "43BF4D", "note": "forest" }, { "token": "meta", "foreground": "61AFEF", "note": "blue" }, { "token": "key", "foreground": "EF596F", "note": "red" }, - { "token": "attribute.name", "foreground": "EF596F", "note": "red" }, - { "token": "attribute.value", "foreground": "F0B726", "note": "gold" }, + { "token": "operators", "foreground": "3FA6DA", "note": "cerulean" }, + { "token": "attribute", "foreground": "F0B726", "note": "gold" }, { "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 9ac3db0..7142ad0 100644 --- a/ui/code-editor/themes/light.json +++ b/ui/code-editor/themes/light.json @@ -88,8 +88,8 @@ { "token": "tag", "foreground": "29A634", "note": "forest" }, { "token": "meta", "foreground": "2D72D2", "note": "blue" }, { "token": "key", "foreground": "CD4246", "note": "red" }, - { "token": "attribute.name", "foreground": "CD4246", "note": "red" }, - { "token": "attribute.value", "foreground": "D1980B", "note": "gold" }, + { "token": "operators", "foreground": "147EB3", "note": "cerulean" }, + { "token": "attribute", "foreground": "D1980B", "note": "gold" }, { "token": "string", "foreground": "238551", "note": "green" }, { "token": "keyword", "foreground": "9D3F9D", "note": "violet" }, { "token": "comment", "foreground": "5F6B7C", "fontStyle": "italic" }