feat: add highlight indicator color for notes

This commit is contained in:
Mattia Astorino 2022-06-11 19:12:14 +02:00
parent 2221604533
commit 58123b4ce8

View file

@ -357,6 +357,11 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => {
'editorWidget.resizeBorder': theme.scheme.defaultAccent, 'editorWidget.resizeBorder': theme.scheme.defaultAccent,
'editorWidget.border': theme.scheme.defaultAccent, 'editorWidget.border': theme.scheme.defaultAccent,
/** /**
* Notebook style
*/
'notebook.focusedCellBorder': theme.scheme.defaultAccent,
'notebook.inactiveFocusedCellBorder': `${theme.scheme.defaultAccent}50`,
/**
* Statusbar style * Statusbar style
*/ */
'statusBar.noFolderBackground': theme.scheme.background, 'statusBar.noFolderBackground': theme.scheme.background,