definining a new color for the lightbulb ai icon
parent
a98f43cfdf
commit
b49fc606c5
|
@ -241,6 +241,7 @@
|
|||
"--vscode-editorInlayHint-typeBackground",
|
||||
"--vscode-editorInlayHint-typeForeground",
|
||||
"--vscode-editorLightBulb-foreground",
|
||||
"--vscode-editorLightBulbAi-foreground",
|
||||
"--vscode-editorLightBulbAutoFix-foreground",
|
||||
"--vscode-editorLineNumber-activeForeground",
|
||||
"--vscode-editorLineNumber-dimmedForeground",
|
||||
|
@ -794,4 +795,4 @@
|
|||
"--zoom-factor",
|
||||
"--test-bar-width"
|
||||
]
|
||||
}
|
||||
}
|
|
@ -24,8 +24,7 @@
|
|||
}
|
||||
|
||||
.monaco-editor .lightBulbWidget.codicon-sparkle-filled {
|
||||
color: var(--vscode-icon-foreground);
|
||||
opacity: 0.5;
|
||||
color: var(--vscode-editorLightBulbAi-foreground, var(--vscode-icon-foreground));
|
||||
}
|
||||
|
||||
.monaco-editor .lightBulbWidget:before {
|
||||
|
|
|
@ -400,6 +400,7 @@ export const editorInlayHintParameterBackground = registerColor('editorInlayHint
|
|||
*/
|
||||
export const editorLightBulbForeground = registerColor('editorLightBulb.foreground', { dark: '#FFCC00', light: '#DDB100', hcDark: '#FFCC00', hcLight: '#007ACC' }, nls.localize('editorLightBulbForeground', "The color used for the lightbulb actions icon."));
|
||||
export const editorLightBulbAutoFixForeground = registerColor('editorLightBulbAutoFix.foreground', { dark: '#75BEFF', light: '#007ACC', hcDark: '#75BEFF', hcLight: '#007ACC' }, nls.localize('editorLightBulbAutoFixForeground', "The color used for the lightbulb auto fix actions icon."));
|
||||
export const editorLightBulbAiForeground = registerColor('editorLightBulbAi.foreground', { dark: darken(iconForeground, 0.4), light: lighten(iconForeground, 1.7), hcDark: iconForeground, hcLight: iconForeground }, nls.localize('editorLightBulbAiForeground', "The color used for the lightbulb AI icon."));
|
||||
|
||||
/**
|
||||
* Diff Editor Colors
|
||||
|
|
Loading…
Reference in New Issue