Fix color name

This commit is contained in:
David Dossett 2023-10-23 17:12:15 -07:00
parent 2423f43195
commit eb6ffc2378
No known key found for this signature in database
GPG key ID: 52AE5593859A97F3
3 changed files with 6 additions and 6 deletions

View file

@ -37,8 +37,8 @@
"--vscode-charts-purple",
"--vscode-charts-red",
"--vscode-charts-yellow",
"--vscode-chat-providerAvatarBackground",
"--vscode-chat-providerAvatarForeground",
"--vscode-chat-avatarBackground",
"--vscode-chat-avatarForeground",
"--vscode-chat-requestBorder",
"--vscode-chat-slashCommandBackground",
"--vscode-chat-slashCommandForeground",

View file

@ -95,7 +95,7 @@
}
.interactive-item-container .header .avatar.codicon-avatar {
background: var(--vscode-chat-providerAvatarBackground);
background: var(--vscode-chat-avatarBackground);
}
.interactive-item-container .header .avatar+.avatar {
@ -109,7 +109,7 @@
}
.interactive-item-container .header .avatar .codicon {
color: var(--vscode-chat-providerAvatarForeground);
color: var(--vscode-chat-avatarForeground);
font-size: 14px;
}

View file

@ -26,13 +26,13 @@ export const chatSlashCommandForeground = registerColor(
);
export const chatAvatarBackground = registerColor(
'chat.providerAvatarBackground',
'chat.avatarBackground',
{ dark: '#1f1f1f', light: '#f2f2f2', hcDark: Color.black, hcLight: Color.white, },
localize('chat.avatarBackground', 'The background color of a chat avatar.')
);
export const chatAvatarForeground = registerColor(
'chat.providerAvatarForeground',
'chat.avatarForeground',
{ dark: foreground, light: foreground, hcDark: foreground, hcLight: foreground, },
localize('chat.avatarForeground', 'The foreground color of a chat avatar.')
);