|
|
@ -316,18 +316,28 @@ export class GraphApp extends App { |
|
|
|
'--panel__bg0': computedStyle.getPropertyValue('--graph-panel-bg'), |
|
|
|
'--panel__bg1': computedStyle.getPropertyValue('--graph-panel-bg2'), |
|
|
|
'--section-border': computedStyle.getPropertyValue('--graph-panel-bg2'), |
|
|
|
'--text-selected': computedStyle.getPropertyValue('--color-foreground'), |
|
|
|
|
|
|
|
'--selected-row': computedStyle.getPropertyValue('--graph-selected-row'), |
|
|
|
'--selected-row-border': isHighContrastTheme |
|
|
|
? `1px solid ${computedStyle.getPropertyValue('--graph-contrast-border-color')}` |
|
|
|
: 'none', |
|
|
|
'--hover-row': computedStyle.getPropertyValue('--graph-hover-row'), |
|
|
|
'--hover-row-border': isHighContrastTheme |
|
|
|
? `1px dashed ${computedStyle.getPropertyValue('--graph-contrast-border-color')}` |
|
|
|
: 'none', |
|
|
|
|
|
|
|
'--text-selected': computedStyle.getPropertyValue('--graph-text-selected'), |
|
|
|
'--text-selected-row': computedStyle.getPropertyValue('--graph-text-selected-row'), |
|
|
|
'--text-normal': computedStyle.getPropertyValue('--color-foreground--85'), |
|
|
|
'--text-secondary': computedStyle.getPropertyValue('--color-foreground--65'), |
|
|
|
'--text-disabled': computedStyle.getPropertyValue('--color-foreground--50'), |
|
|
|
'--text-hovered': computedStyle.getPropertyValue('--graph-text-hovered'), |
|
|
|
'--text-dimmed-selected': computedStyle.getPropertyValue('--graph-text-dimmed-selected'), |
|
|
|
'--text-dimmed': computedStyle.getPropertyValue('--graph-text-dimmed'), |
|
|
|
'--text-normal': computedStyle.getPropertyValue('--graph-text-normal'), |
|
|
|
'--text-secondary': computedStyle.getPropertyValue('--graph-text-secondary'), |
|
|
|
'--text-disabled': computedStyle.getPropertyValue('--graph-text-disabled'), |
|
|
|
|
|
|
|
'--text-accent': computedStyle.getPropertyValue('--color-link-foreground'), |
|
|
|
'--text-inverse': computedStyle.getPropertyValue('--vscode-input-background'), |
|
|
|
'--text-bright': computedStyle.getPropertyValue('--vscode-input-background'), |
|
|
|
'--hover-row': computedStyle.getPropertyValue('--graph-hover-row'), |
|
|
|
'--hover-row-border': isHighContrastTheme ? `1px dashed ${computedStyle.getPropertyValue('--graph-contrast-border-color')}` : 'none', |
|
|
|
'--selected-row': computedStyle.getPropertyValue('--graph-selected-row'), |
|
|
|
'--selected-row-border': isHighContrastTheme ? `1px solid ${computedStyle.getPropertyValue('--graph-contrast-border-color')}` : 'none', |
|
|
|
...mixedGraphColors, |
|
|
|
}, |
|
|
|
themeOpacityFactor: parseInt(computedStyle.getPropertyValue('--graph-theme-opacity-factor')) || 1, |
|
|
|