mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Fix terminal colors on all themes
This commit is contained in:
parent
55a2466afe
commit
eabb59842d
1 changed files with 3 additions and 3 deletions
|
|
@ -276,14 +276,14 @@ const Terminal: React.FC<TerminalProps> = ({ output, handleSendStdin, shouldAllo
|
|||
}
|
||||
|
||||
.terminal-cursor {
|
||||
border: 1px solid var(--vscode-terminal-foreground);
|
||||
border: 1px solid var(--vscode-terminal-foreground, #FFFFFF);
|
||||
position: absolute;
|
||||
width: 4px;
|
||||
margin-top: -0.5px;
|
||||
}
|
||||
|
||||
.terminal-cursor-focused {
|
||||
background-color: var(--vscode-terminal-foreground);
|
||||
background-color: var(--vscode-terminal-foreground, #FFFFFF);
|
||||
animation: blink 1s step-end infinite;
|
||||
}
|
||||
|
||||
|
|
@ -308,7 +308,7 @@ const Terminal: React.FC<TerminalProps> = ({ output, handleSendStdin, shouldAllo
|
|||
onBlur={() => setIsFocused(false)}
|
||||
className="terminal-textarea"
|
||||
style={{
|
||||
backgroundColor: "var(--vscode-terminal-background)",
|
||||
// backgroundColor: "var(--vscode-editor-background)", // NOTE: adding cursor ontop of this color wouldnt work on some themes
|
||||
caretColor: "transparent", // Hide default caret
|
||||
color: "var(--vscode-terminal-foreground)",
|
||||
borderRadius: "3px",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue