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
exportconstforeground=registerColor('foreground',{dark: '#CCCCCC',light: '#6C6C6C',hc: '#FFFFFF'},nls.localize('foreground',"Overall foreground color. This color is only used if not overridden by a component."));
},nls.localize('focusedElementOutline',"Overall outline/border color for focused elements. This color is only used if not overridden by a component."));
123
+
exportconstfocusBorder=registerColor('focusBorder',{dark: Color.fromRGBA(newRGBA(14,99,156)).transparent(0.6),light: Color.fromRGBA(newRGBA(0,122,204)).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."));
124
+
125
+
exportconsthighContrastBorder=registerColor('highContrastBorder',{light: null,dark: null,hc: '#6FC3DF'},nls.localize('highContrastBorder',"Border color to separate components when high contrast theme is enabled."));
126
+
exportconsthighContrastOutline=registerColor('highContrastOutline',{light: null,dark: null,hc: focusBorder},nls.localize('highContrastOutline',"Outline color for active components when high contrast theme is enabled."));
128
127
129
128
exportconstinfoBackground=registerColor('infoBackground',{dark: '#063B49',light: '#D6ECF2',hc: Color.black},nls.localize('infoBackground',"Overall info background color. This color is only used if not overridden by a component."));
130
129
exportconstinfoBorder=registerColor('infoBorder',{dark: '#55AAFF',light: '#009CCC',hc: '#6FC3DF'},nls.localize('infoBorder',"Overall info border color. This color is only used if not overridden by a component."));
exportconsterrorBackground=registerColor('errorBackground',{dark: '#5A1D1D',light: '#F2DEDE',hc: Color.black},nls.localize('errorBackground',"Overall error background color. This color is only used if not overridden by a component."));
134
133
exportconsterrorBorder=registerColor('errorBorder',{dark: '#BE1100',light: '#E51400',hc: '#BE1100'},nls.localize('errorBorder',"Overall error border color. This color is only used if not overridden by a component."));
135
134
136
-
/**
137
-
* Commonly used High contrast colors.
138
-
*/
139
-
exportconsthighContrastBorder=registerColor('highContrastBorder',{light: null,dark: null,hc: '#6FC3DF'},nls.localize('highContrastBorder',"Border color to separate components when high contrast theme is enabled."));
140
-
exportconsthighContrastOutline=registerColor('highContrastOutline',{light: null,dark: null,hc: focus},nls.localize('highContrastOutline',"Outline color for active components when high contrast theme is enabled."));
141
-
142
-
/**
143
-
* Widgets
144
-
*/
135
+
// ----- widgets
145
136
exportconstwidgetShadow=registerColor('widgetShadow',{dark: '#000000',light: '#A8A8A8',hc: null},nls.localize('widgetShadow','Shadow color of widgets such as find/replace inside the editor.'));
0 commit comments