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/platform/theme/common/colorRegistry.ts
+1-6Lines changed: 1 addition & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -179,6 +179,7 @@ export function getColorRegistry(): IColorRegistry {
179
179
exportconstforeground=registerColor('foreground',{dark: '#CCCCCC',light: '#616161',hc: '#FFFFFF'},nls.localize('foreground',"Overall foreground color. This color is only used if not overridden by a component."));
180
180
exportconsterrorForeground=registerColor('errorForeground',{dark: '#F48771',light: '#A1260D',hc: '#F48771'},nls.localize('errorForeground',"Overall foreground color for error messages. This color is only used if not overridden by a component."));
181
181
exportconstdescriptionForeground=registerColor('descriptionForeground',{light: '#717171',dark: transparent(foreground,0.7),hc: transparent(foreground,0.7)},nls.localize('descriptionForeground',"Foreground color for description text providing additional information, for example for a label."));
182
+
exportconsticonForeground=registerColor('icon.foreground',{dark: '#C5C5C5',light: '#424242',hc: '#FFFFFF'},nls.localize('iconForeground',"The default color for icons in the workbench."));
182
183
183
184
exportconstfocusBorder=registerColor('focusBorder',{dark: Color.fromHex('#0E639C').transparent(0.8),light: Color.fromHex('#007ACC').transparent(0.4),hc: '#F38518'},nls.localize('focusBorder',"Overall border color for focused elements. This color is only used if not overridden by a component."));
exportconstselectionBackground=registerColor('selection.background',{light: null,dark: null,hc: null},nls.localize('selectionBackground',"The background color of text selections in the workbench (e.g. for input fields or text areas). Note that this does not apply to selections within the editor."));
189
190
190
-
// ------ icon colors
191
-
exportconsticonForeground=registerColor('icon.foreground',{dark: '#C5C5C5',light: '#424242',hc: '#FFFFFF'},nls.localize('iconForeground',"The default color for icons in the workbench."));
192
-
exportconstnotificationErrorIconForeground=registerColor('notificationErrorIcon.foreground',{dark: '#F48771',light: '#A1260D',hc: '#F48771'},nls.localize('notificationErrorIconForeground',"The color used for the notification error icon."));
193
-
exportconstnotificationWarningIconForeground=registerColor('notificationWarningIcon.foreground',{dark: '#FFCC00',light: '#DDB100',hc: '#FFCC00'},nls.localize('notificationWarningIconForeground',"The color used for the notification warning icon."));
194
-
exportconstnotificationInfoForeground=registerColor('notificationInfoIcon.foreground',{dark: '#75BEFF',light: '#007ACC',hc: '#75BEFF'},nls.localize('notificationInfoIconForeground',"The color used for the notification info icon."));
195
-
196
191
// ------ text colors
197
192
198
193
exportconsttextSeparatorForeground=registerColor('textSeparator.foreground',{light: '#0000002e',dark: '#ffffff2e',hc: Color.black},nls.localize('textSeparatorForeground',"Color for text separators."));
},nls.localize('notificationsBorder',"Notifications border color separating from other notifications in the notifications center. Notifications slide in from the bottom right of the window."));
0 commit comments