From 58123b4ce813c409b06972d7550ccbb4df3d8589 Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Sat, 11 Jun 2022 19:12:14 +0200 Subject: [PATCH] feat: add highlight indicator color for notes --- scripts/generator/color-set.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/generator/color-set.ts b/scripts/generator/color-set.ts index 5d17a67..99146e4 100644 --- a/scripts/generator/color-set.ts +++ b/scripts/generator/color-set.ts @@ -357,6 +357,11 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => { 'editorWidget.resizeBorder': theme.scheme.defaultAccent, 'editorWidget.border': theme.scheme.defaultAccent, /** + * Notebook style + */ + 'notebook.focusedCellBorder': theme.scheme.defaultAccent, + 'notebook.inactiveFocusedCellBorder': `${theme.scheme.defaultAccent}50`, + /** * Statusbar style */ 'statusBar.noFolderBackground': theme.scheme.background,