Skip to content

Commit 8ebc17d

Browse files
committed
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
1 parent 087e6f7 commit 8ebc17d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

webview-ui/src/index.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -496,14 +496,14 @@ input[cmdk-input]:focus {
496496
position: relative;
497497
text-decoration: underline;
498498
text-decoration-style: wavy;
499-
text-decoration-color: var(--vscode-editorError-foreground, #f48771);
499+
text-decoration-color: var(--vscode-editorInfo-foreground, #3794ff);
500500
text-decoration-thickness: 1.5px;
501501
text-underline-offset: 2px;
502502
cursor: pointer;
503503
}
504504

505505
.spell-check-error:hover {
506-
text-decoration-color: var(--vscode-editorError-foreground, #f48771);
506+
text-decoration-color: var(--vscode-editorInfo-foreground, #3794ff);
507507
opacity: 0.8;
508508
}
509509

@@ -524,8 +524,8 @@ input[cmdk-input]:focus {
524524
45deg,
525525
transparent,
526526
transparent 2px,
527-
var(--vscode-editorError-foreground, #f48771) 2px,
528-
var(--vscode-editorError-foreground, #f48771) 4px
527+
var(--vscode-editorInfo-foreground, #3794ff) 2px,
528+
var(--vscode-editorInfo-foreground, #3794ff) 4px
529529
);
530530
opacity: 0.7;
531531
}
@@ -537,6 +537,6 @@ input[cmdk-input]:focus {
537537
/* Spell check highlight in textarea overlay */
538538
.spell-check-highlight {
539539
background: transparent;
540-
border-bottom: 2px wavy var(--vscode-editorError-foreground, #f48771);
540+
border-bottom: 2px wavy var(--vscode-editorInfo-foreground, #3794ff);
541541
position: relative;
542542
}

0 commit comments

Comments
 (0)