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
Copy file name to clipboardExpand all lines: src/vs/editor/common/view/editorColorRegistry.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ import { registerThemingParticipant } from 'vs/platform/theme/common/themeServic
13
13
*/
14
14
exportconsteditorLineHighlight=registerColor('editor.lineHighlightBackground',{dark: null,light: null,hc: null},nls.localize('lineHighlight','Background color for the highlight of line at the cursor position.'));
15
15
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
-
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 to not hide underlying decorations.'),true);
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
18
19
19
exportconsteditorCursorForeground=registerColor('editorCursor.foreground',{dark: '#AEAFAD',light: Color.black,hc: Color.white},nls.localize('caret','Color of the editor cursor.'));
exportconsteditorUnnecessaryCodeOpacity=registerColor('editorUnnecessaryCode.opacity',{dark: Color.fromHex('#000a'),light: Color.fromHex('#0007'),hc: null},nls.localize('unnecessaryCodeOpacity','Opacity of unnecessary (unused) source code in the editor. For example, "#000000c0" will render the code with 75% opacity. For high contrast themes, use the \'editorUnnecessaryCode.border\' theme color to underline unnecessary code instead of fading it out.'));
exportconstoverviewRulerRangeHighlight=registerColor('editorOverviewRuler.rangeHighlightForeground',{dark: rulerRangeDefault,light: rulerRangeDefault,hc: rulerRangeDefault},nls.localize('overviewRulerRangeHighlight','Overview ruler marker color for range highlights. The color must not be opaque to not hide underlying decorations.'),true);
56
+
exportconstoverviewRulerRangeHighlight=registerColor('editorOverviewRuler.rangeHighlightForeground',{dark: rulerRangeDefault,light: rulerRangeDefault,hc: rulerRangeDefault},nls.localize('overviewRulerRangeHighlight','Overview ruler marker color for range highlights. The color must not be opaque so as not to hide underlying decorations.'),true);
57
57
exportconstoverviewRulerError=registerColor('editorOverviewRuler.errorForeground',{dark: newColor(newRGBA(255,18,18,0.7)),light: newColor(newRGBA(255,18,18,0.7)),hc: newColor(newRGBA(255,50,50,1))},nls.localize('overviewRuleError','Overview ruler marker color for errors.'));
58
58
exportconstoverviewRulerWarning=registerColor('editorOverviewRuler.warningForeground',{dark: newColor(newRGBA(18,136,18,0.7)),light: newColor(newRGBA(18,136,18,0.7)),hc: newColor(newRGBA(50,255,50,1))},nls.localize('overviewRuleWarning','Overview ruler marker color for warnings.'));
59
59
exportconstoverviewRulerInfo=registerColor('editorOverviewRuler.infoForeground',{dark: newColor(newRGBA(18,18,136,0.7)),light: newColor(newRGBA(18,18,136,0.7)),hc: newColor(newRGBA(50,50,255,1))},nls.localize('overviewRuleInfo','Overview ruler marker color for infos.'));
exportconsteditorWordHighlight=registerColor('editor.wordHighlightBackground',{dark: '#575757B8',light: '#57575740',hc: null},nls.localize('wordHighlight','Background color of a symbol during read-access, like reading a variable. The color must not be opaque to not hide underlying decorations.'),true);
31
-
exportconsteditorWordHighlightStrong=registerColor('editor.wordHighlightStrongBackground',{dark: '#004972B8',light: '#0e639c40',hc: null},nls.localize('wordHighlightStrong','Background color of a symbol during write-access, like writing to a variable. The color must not be opaque to not hide underlying decorations.'),true);
30
+
exportconsteditorWordHighlight=registerColor('editor.wordHighlightBackground',{dark: '#575757B8',light: '#57575740',hc: null},nls.localize('wordHighlight','Background color of a symbol during read-access, like reading a variable. The color must not be opaque so as not to hide underlying decorations.'),true);
31
+
exportconsteditorWordHighlightStrong=registerColor('editor.wordHighlightStrongBackground',{dark: '#004972B8',light: '#0e639c40',hc: null},nls.localize('wordHighlightStrong','Background color of a symbol during write-access, like writing to a variable. The color must not be opaque so as not to hide underlying decorations.'),true);
32
32
exportconsteditorWordHighlightBorder=registerColor('editor.wordHighlightBorder',{light: null,dark: null,hc: activeContrastBorder},nls.localize('wordHighlightBorder','Border color of a symbol during read-access, like reading a variable.'));
33
33
exportconsteditorWordHighlightStrongBorder=registerColor('editor.wordHighlightStrongBorder',{light: null,dark: null,hc: activeContrastBorder},nls.localize('wordHighlightStrongBorder','Border color of a symbol during write-access, like writing to a variable.'));
34
34
35
-
exportconstoverviewRulerWordHighlightForeground=registerColor('editorOverviewRuler.wordHighlightForeground',{dark: '#A0A0A0CC',light: '#A0A0A0CC',hc: '#A0A0A0CC'},nls.localize('overviewRulerWordHighlightForeground','Overview ruler marker color for symbol highlights. The color must not be opaque to not hide underlying decorations.'),true);
36
-
exportconstoverviewRulerWordHighlightStrongForeground=registerColor('editorOverviewRuler.wordHighlightStrongForeground',{dark: '#C0A0C0CC',light: '#C0A0C0CC',hc: '#C0A0C0CC'},nls.localize('overviewRulerWordHighlightStrongForeground','Overview ruler marker color for write-access symbol highlights. The color must not be opaque to not hide underlying decorations.'),true);
35
+
exportconstoverviewRulerWordHighlightForeground=registerColor('editorOverviewRuler.wordHighlightForeground',{dark: '#A0A0A0CC',light: '#A0A0A0CC',hc: '#A0A0A0CC'},nls.localize('overviewRulerWordHighlightForeground','Overview ruler marker color for symbol highlights. The color must not be opaque so as not to hide underlying decorations.'),true);
36
+
exportconstoverviewRulerWordHighlightStrongForeground=registerColor('editorOverviewRuler.wordHighlightStrongForeground',{dark: '#C0A0C0CC',light: '#C0A0C0CC',hc: '#C0A0C0CC'},nls.localize('overviewRulerWordHighlightStrongForeground','Overview ruler marker color for write-access symbol highlights. The color must not be opaque so as not to hide underlying decorations.'),true);
0 commit comments