fix: use foreground color for context-management icons (#9912)

This commit is contained in:
Hannes Rudolph 2025-12-08 08:17:47 -07:00 committed by GitHub
parent bea7626a9d
commit 1370cb04f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ export function CondensationResultRow({ data }: CondensationResultRowProps) {
className="flex items-center justify-between cursor-pointer select-none"
onClick={() => setIsExpanded(!isExpanded)}>
<div className="flex items-center gap-2 flex-grow">
<FoldVertical size={16} className="text-blue-400" />
<FoldVertical size={16} className="text-vscode-foreground" />
<span className="font-bold text-vscode-foreground">
{t("chat:contextManagement.condensation.title")}
</span>

View file

@ -33,7 +33,7 @@ export function TruncationResultRow({ data }: TruncationResultRowProps) {
className="flex items-center justify-between cursor-pointer select-none"
onClick={() => setIsExpanded(!isExpanded)}>
<div className="flex items-center gap-2 flex-grow">
<FoldVertical size={16} className="text-blue-400" />
<FoldVertical size={16} className="text-vscode-foreground" />
<span className="font-bold text-vscode-foreground">
{t("chat:contextManagement.truncation.title")}
</span>