mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
Merge pull request #26788 from hungys/terminal_foreground
Fix for terminal.foreground not working
This commit is contained in:
commit
0e3ca52806
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ export class TerminalPanel extends Panel {
|
|||
css += `.monaco-workbench .panel.integrated-terminal .terminal-outer-container { background-color: ${bgColor}; }`;
|
||||
}
|
||||
const fgColor = theme.getColor(TERMINAL_FOREGROUND_COLOR);
|
||||
if (bgColor) {
|
||||
if (fgColor) {
|
||||
css += `.monaco-workbench .panel.integrated-terminal .xterm { color: ${fgColor}; }`;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue