Skip to content

Commit 14e5a33

Browse files
unregister unused colors
1 parent 82f4e21 commit 14e5a33

File tree

1 file changed

+0
-104
lines changed

1 file changed

+0
-104
lines changed

arduino-ide-extension/src/browser/arduino-frontend-contribution.tsx

-104
Original file line numberDiff line numberDiff line change
@@ -183,24 +183,6 @@ export class ArduinoFrontendContribution
183183

184184
registerColors(colors: ColorRegistry): void {
185185
colors.register(
186-
{
187-
id: 'arduino.branding.primary',
188-
defaults: {
189-
dark: 'statusBar.background',
190-
light: 'statusBar.background',
191-
},
192-
description:
193-
'The primary branding color, such as dialog titles, library, and board manager list labels.',
194-
},
195-
{
196-
id: 'arduino.branding.secondary',
197-
defaults: {
198-
dark: 'statusBar.background',
199-
light: 'statusBar.background',
200-
},
201-
description:
202-
'Secondary branding color for list selections, dropdowns, and widget borders.',
203-
},
204186
{
205187
id: 'arduino.toolbar.button.background',
206188
defaults: {
@@ -250,92 +232,6 @@ export class ArduinoFrontendContribution
250232
},
251233
description:
252234
'Toggle color of the toolbar items when they are currently toggled (the command is in progress)',
253-
},
254-
{
255-
id: 'arduino.output.foreground',
256-
defaults: {
257-
dark: 'editor.foreground',
258-
light: 'editor.foreground',
259-
hc: 'editor.foreground',
260-
},
261-
description: 'Color of the text in the Output view.',
262-
},
263-
{
264-
id: 'arduino.output.background',
265-
defaults: {
266-
dark: 'editor.background',
267-
light: 'editor.background',
268-
hc: 'editor.background',
269-
},
270-
description: 'Background color of the Output view.',
271-
},
272-
{
273-
id: 'arduino.toolbar.dropdown.border',
274-
defaults: {
275-
dark: 'dropdown.border',
276-
light: 'dropdown.border',
277-
hc: 'dropdown.border',
278-
},
279-
description: 'Border color of the Board Selector.',
280-
},
281-
282-
{
283-
id: 'arduino.toolbar.dropdown.borderActive',
284-
defaults: {
285-
dark: 'focusBorder',
286-
light: 'focusBorder',
287-
hc: 'focusBorder',
288-
},
289-
description: "Border color of the Board Selector when it's active",
290-
},
291-
292-
{
293-
id: 'arduino.toolbar.dropdown.background',
294-
defaults: {
295-
dark: 'tab.unfocusedActiveBackground',
296-
light: 'tab.unfocusedActiveBackground',
297-
hc: 'tab.unfocusedActiveBackground',
298-
},
299-
description: 'Background color of the Board Selector.',
300-
},
301-
302-
{
303-
id: 'arduino.toolbar.dropdown.label',
304-
defaults: {
305-
dark: 'foreground',
306-
light: 'foreground',
307-
hc: 'foreground',
308-
},
309-
description: 'Font color of the Board Selector.',
310-
},
311-
{
312-
id: 'arduino.toolbar.dropdown.iconSelected',
313-
defaults: {
314-
dark: 'statusBar.background',
315-
light: 'statusBar.background',
316-
hc: 'statusBar.background',
317-
},
318-
description:
319-
'Color of the selected protocol icon in the Board Selector.',
320-
},
321-
{
322-
id: 'arduino.toolbar.dropdown.option.backgroundHover',
323-
defaults: {
324-
dark: 'editor.background',
325-
light: 'editor.background',
326-
hc: 'editor.background',
327-
},
328-
description: 'Background color on hover of the Board Selector options.',
329-
},
330-
{
331-
id: 'arduino.toolbar.dropdown.option.backgroundSelected',
332-
defaults: {
333-
dark: 'editor.background',
334-
light: 'editor.background',
335-
hc: 'editor.background',
336-
},
337-
description:
338-
'Background color of the selected board in the Board Selector.',
339235
}
340236
);
341237
}

0 commit comments

Comments
 (0)