From 5be4d091e5015b19b6abc6d450bcad3b8d59cd07 Mon Sep 17 00:00:00 2001 From: Max Programming Date: Fri, 16 Jul 2021 12:16:23 +0530 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=90=9B=20Bug=20fixed=20-=20selection?= =?UTF-8?q?=20colour?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- themes/codeSTACKr-theme-muted.json | 1 - themes/codeSTACKr-theme.json | 1 - 2 files changed, 2 deletions(-) diff --git a/themes/codeSTACKr-theme-muted.json b/themes/codeSTACKr-theme-muted.json index e76b54f..a59fb34 100644 --- a/themes/codeSTACKr-theme-muted.json +++ b/themes/codeSTACKr-theme-muted.json @@ -444,7 +444,6 @@ "titleBar.activeBackground": "#070f15", "pickerGroup.border": "#FFFFFF1a", "debugToolBar.background": "#0c1a25", - "selection.background": "#ffb59a", "sash.hoverBorder": "#ffb59a" } } diff --git a/themes/codeSTACKr-theme.json b/themes/codeSTACKr-theme.json index 20a0b06..f2d51e4 100644 --- a/themes/codeSTACKr-theme.json +++ b/themes/codeSTACKr-theme.json @@ -444,7 +444,6 @@ "titleBar.activeBackground": "#070f15", "pickerGroup.border": "#FFFFFF1a", "debugToolBar.background": "#0c1a25", - "selection.background": "#FF652F", "sash.hoverBorder": "#ff652F" } } From a113d974f4a211598cf3398de1d7b4633c9bb7ba Mon Sep 17 00:00:00 2001 From: Max Programming Date: Sat, 17 Jul 2021 12:30:38 +0530 Subject: [PATCH 2/2] =?UTF-8?q?=E2=9C=A8=20React=20-=20Added=20new=20colou?= =?UTF-8?q?rs=20for=20setState=20and=20types?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- themes/codeSTACKr-theme-muted.json | 16 ++++++++++++++++ themes/codeSTACKr-theme.json | 17 +++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/themes/codeSTACKr-theme-muted.json b/themes/codeSTACKr-theme-muted.json index a59fb34..c752d27 100644 --- a/themes/codeSTACKr-theme-muted.json +++ b/themes/codeSTACKr-theme-muted.json @@ -1,6 +1,22 @@ { "$schema": "vscode://schemas/color-theme", "name": "codeSTACKr", + "semanticTokenColors": { + "function": { + "foreground": "#bae0f8" + }, + "variable": "#ffa2b6", + "interface": { + "foreground": "#8df1c9", + "italic": true + }, + "type": { + "foreground": "#8df1c9", + "italic": true + }, + // This colours both object definiton properties, as well as references. If the property does not exist, it will be white\. + "property": "#9effff" + }, "tokenColors": [ { "name": "Global settings", diff --git a/themes/codeSTACKr-theme.json b/themes/codeSTACKr-theme.json index f2d51e4..addb8c4 100644 --- a/themes/codeSTACKr-theme.json +++ b/themes/codeSTACKr-theme.json @@ -1,6 +1,23 @@ { "$schema": "vscode://schemas/color-theme", "name": "codeSTACKr", + "semanticHighlighting": true, + "semanticTokenColors": { + "function": { + "foreground": "#5eb7ee" + }, + "variable": "#ff5177", + "interface": { + "foreground": "#14A76C", + "italic": true + }, + "type": { + "foreground": "#14A76C", + "italic": true + }, + // This colours both object definiton properties, as well as references. If the property does not exist, it will be white\. + "property": "#9effff" + }, "tokenColors": [ { "name": "Global settings",