You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exportconsteditorLineHighlightBorder=registerColor('editor.lineHighlightBorder',{dark: '#282828',light: '#eeeeee',hc: '#f38518'},nls.localize('lineHighlightBorderBox','Background color for the border around the line at the cursor position.'));
16
16
exportconsteditorRangeHighlight=registerColor('editor.rangeHighlightBackground',{dark: '#ffffff0b',light: '#fdff0033',hc: null},nls.localize('rangeHighlight','Background color of highlighted ranges, like by quick open and find features. The color must not be opaque so as not to hide underlying decorations.'),true);
17
17
exportconsteditorRangeHighlightBorder=registerColor('editor.rangeHighlightBorder',{dark: null,light: null,hc: activeContrastBorder},nls.localize('rangeHighlightBorder','Background color of the border around highlighted ranges.'),true);
18
+
exportconsteditorSymbolHighlight=registerColor('editor.symbolHighlightBackground',{dark: editorRangeHighlight,light: editorRangeHighlight,hc: null},nls.localize('symbolHighlight','Background color of highlighted symbol, like for go to definition or go next/previous symbol. The color must not be opaque so as not to hide underlying decorations.'),true);
19
+
exportconsteditorSymbolHighlightBorder=registerColor('editor.symbolHighlightBorder',{dark: null,light: null,hc: activeContrastBorder},nls.localize('symbolHighlightBorder','Background color of the border around highlighted symbols.'),true);
18
20
19
21
exportconsteditorCursorForeground=registerColor('editorCursor.foreground',{dark: '#AEAFAD',light: Color.black,hc: Color.white},nls.localize('caret','Color of the editor cursor.'));
20
22
exportconsteditorCursorBackground=registerColor('editorCursor.background',null,nls.localize('editorCursorBackground','The background color of the editor cursor. Allows customizing the color of a character overlapped by a block cursor.'));
0 commit comments