Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
45 changes: 45 additions & 0 deletions src/css-variables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,51 @@ export interface CustomCssVariables {
*/
'--ts-var-nav-color'?: string;

/**
* Background color of the left navigation panel.
*/
'--ts-var-left-nav-background'?: string;

/**
* Background color of the active tab in the left navigation panel.
*/
'--ts-var-left-nav-active-tab-background'?: string;

/**
* Border color of the active tab in the left navigation panel.
*/
'--ts-var-left-nav-active-tab-border-color'?: string;

/**
* Font color of the section title in the left navigation panel.
*/
'--ts-var-left-nav-section-title-color'?: string;

/**
* Font color of the items in the left navigation panel.
*/
'--ts-var-left-nav-item-color'?: string;

/**
* Font color of the selected item in the left navigation panel.
*/
'--ts-var-left-nav-item-selection-color'?: string;

/**
* Background color of the selected item in the left navigation panel.
*/
'--ts-var-left-nav-item-selection-background'?: string;

/**
* Color of the active tab icon in the left navigation panel.
*/
'--ts-var-left-nav-tab-icon-active-color'?: string;

/**
* Color of the inactive tab icon in the left navigation panel.
*/
'--ts-var-left-nav-tab-icon-inactive-color'?: string;

/**
* Background color of the *Search data* button.
*/
Expand Down
Loading
Loading