Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mute terminal hint color #214173

Merged
merged 7 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-initialHint-foreground",
"--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.initialHint.foreground', {
meganrogge marked this conversation as resolved.
Show resolved Hide resolved
dark: '#ffffff56',
light: '#0007',
hcDark: '#ffffff56',
meganrogge marked this conversation as resolved.
Show resolved Hide resolved
hcLight: '#0007'
}, 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-initialHint-foreground);
}
.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
Loading