Skip to content

Commit

Permalink
mute terminal hint color (#214173)
Browse files Browse the repository at this point in the history
  • Loading branch information
meganrogge authored Jun 4, 2024
1 parent 55fdf62 commit d9148b1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions build/lib/stylelint/vscode-known-variables.json
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,7 @@
"--vscode-terminal-selectionBackground",
"--vscode-terminal-selectionForeground",
"--vscode-terminal-tab-activeBorder",
"--vscode-terminal-initialHintForeground",
"--vscode-terminalCommandDecoration-defaultBackground",
"--vscode-terminalCommandDecoration-errorBackground",
"--vscode-terminalCommandDecoration-successBackground",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,12 @@ export const TERMINAL_TAB_ACTIVE_BORDER = registerColor('terminal.tab.activeBord
hcDark: TAB_ACTIVE_BORDER,
hcLight: TAB_ACTIVE_BORDER
}, nls.localize('terminal.tab.activeBorder', 'Border on the side of the terminal tab in the panel. This defaults to tab.activeBorder.'));
export const TERMINAL_INITIAL_HINT_FOREGROUND = registerColor('terminal.initialHintForeground', {
dark: '#ffffff56',
light: '#0007',
hcDark: null,
hcLight: null
}, nls.localize('terminalInitialHintForeground', 'Foreground color of the terminal initial hint.'));

export const ansiColorMap: { [key: string]: { index: number; defaults: ColorDefaults } } = {
'terminal.ansiBlack': {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@
*--------------------------------------------------------------------------------------------*/

.monaco-workbench .pane-body.integrated-terminal .terminal-initial-hint {
color: var(--vscode-input-placeholderForeground);
color: var(--vscode-terminal-initialHintForeground);
}
.monaco-workbench .pane-body.integrated-terminal .terminal-initial-hint a {
cursor: pointer;
color: var(--vscode-textLink-foreground);
}

.monaco-workbench .pane-body.integrated-terminal .terminal-initial-hint a,
Expand Down

0 comments on commit d9148b1

Please sign in to comment.