提交 735d7d07 编写于 作者: D Daniel Imms 提交者: Dirk Baeumer

Move terminal.foreground defaults to JS

Fixes #27230
上级 8fcb57e8
......@@ -9,12 +9,9 @@
display: flex;
flex-direction: column;
background-color: transparent!important;
color: #333;
-webkit-user-select: initial;
position: relative;
}
.vs-dark .monaco-workbench .panel.integrated-terminal { color: #CCC; }
.hc-black .monaco-workbench .panel.integrated-terminal { color: #FFF; }
.monaco-workbench .panel.integrated-terminal .terminal-outer-container {
height: 100%;
......
......@@ -14,7 +14,11 @@ import { registerColor, ColorIdentifier } from 'vs/platform/theme/common/colorRe
export const ansiColorIdentifiers: ColorIdentifier[] = [];
export const TERMINAL_BACKGROUND_COLOR = registerColor('terminal.background', null, nls.localize('terminal.background', 'The background color of the terminal, this allows coloring the terminal differently to the panel.'));
export const TERMINAL_FOREGROUND_COLOR = registerColor('terminal.foreground', null, nls.localize('terminal.foreground', 'The foreground color of the terminal.'));
export const TERMINAL_FOREGROUND_COLOR = registerColor('terminal.foreground', {
light: '#333333',
dark: '#CCCCCC',
hc: 'FFFFFF'
}, nls.localize('terminal.foreground', 'The foreground color of the terminal.'));
const ansiColorMap = {
'terminal.ansiBlack': {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册