From 8ebc17d077b311e4f263bf972b10fae79ad7b7ad Mon Sep 17 00:00:00 2001 From: Roo Code Date: Wed, 24 Sep 2025 04:15:11 +0000 Subject: [PATCH] fix: change spell check underline color from red to blue - Changed from error-red to info-blue as specified in requirements - Uses --vscode-editorInfo-foreground for consistency with VSCode theme --- webview-ui/src/index.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/webview-ui/src/index.css b/webview-ui/src/index.css index c237850e39..f00db3f25d 100644 --- a/webview-ui/src/index.css +++ b/webview-ui/src/index.css @@ -496,14 +496,14 @@ input[cmdk-input]:focus { position: relative; text-decoration: underline; text-decoration-style: wavy; - text-decoration-color: var(--vscode-editorError-foreground, #f48771); + text-decoration-color: var(--vscode-editorInfo-foreground, #3794ff); text-decoration-thickness: 1.5px; text-underline-offset: 2px; cursor: pointer; } .spell-check-error:hover { - text-decoration-color: var(--vscode-editorError-foreground, #f48771); + text-decoration-color: var(--vscode-editorInfo-foreground, #3794ff); opacity: 0.8; } @@ -524,8 +524,8 @@ input[cmdk-input]:focus { 45deg, transparent, transparent 2px, - var(--vscode-editorError-foreground, #f48771) 2px, - var(--vscode-editorError-foreground, #f48771) 4px + var(--vscode-editorInfo-foreground, #3794ff) 2px, + var(--vscode-editorInfo-foreground, #3794ff) 4px ); opacity: 0.7; } @@ -537,6 +537,6 @@ input[cmdk-input]:focus { /* Spell check highlight in textarea overlay */ .spell-check-highlight { background: transparent; - border-bottom: 2px wavy var(--vscode-editorError-foreground, #f48771); + border-bottom: 2px wavy var(--vscode-editorInfo-foreground, #3794ff); position: relative; }