-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Description
Enhancement: Allow styling of default VSCode-Tabs (not panel type) using theme variables.
Current styles (non-specific to element state)
.wrapper {
color: var(--vscode-foreground, #cccccc);
}
:host([active]) .wrapper {
border-bottom-color: var(--vscode-panelTitle-activeForeground, #cccccc);
color: var(--vscode-panelTitle-activeForeground, #cccccc);
}
proposed change (dedicated CSS variables)
.wrapper {
color: var(--vscode-panelTitle-inactiveForeground, #9d9d9d);
}
:host([active]) .wrapper {
border-bottom-color: var(--vscode-panelTitle-activeBorder, #cccccc);
color: var(--vscode-panelTitle-activeForeground, #cccccc);
}
Metadata
Metadata
Assignees
Labels
No labels