import { localize } from '@opensumi/ide-core-common'; import { registerColor } from '../../utils'; import { listActiveSelectionBackground, listActiveSelectionForeground, listFocusBackground, listFocusForeground, listHoverBackground, listHoverForeground, listInactiveSelectionBackground, listInactiveSelectionForeground, listInvalidItemForeground, } from '../list-tree'; export const treeHoverBackground = registerColor( 'kt.tree.hoverBackground', { dark: listHoverBackground, light: listHoverBackground, hcDark: listHoverBackground, hcLight: listHoverBackground }, localize('treeHoverBackground', 'Tree background when hovering over items using the mouse.'), ); export const treeHoverForeground = registerColor( 'kt.tree.hoverForeground', { dark: listHoverForeground, light: listHoverForeground, hcDark: listHoverForeground, hcLight: listHoverForeground }, localize('treeHoverForeground', 'Tree foreground when hovering over items using the mouse.'), ); export const treeFocusForeground = registerColor( 'kt.tree.focusForeground', { dark: listFocusForeground, light: listFocusForeground, hcDark: listFocusForeground, hcLight: listFocusForeground }, localize( 'treeFocusForeground', 'Tree foreground color for the focused item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.', ), ); export const treeFocusBackground = registerColor( 'kt.tree.focusBackground', { dark: listFocusBackground, light: listFocusBackground, hcDark: listFocusBackground, hcLight: listFocusBackground }, localize( 'treeFocusBackground', 'Tree background color for the focused item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.', ), ); export const treeInactiveSelectionForeground = registerColor( 'kt.tree.inactiveSelectionForeground', { dark: listInactiveSelectionForeground, light: listInactiveSelectionForeground, hcDark: listInactiveSelectionForeground, hcLight: listInactiveSelectionForeground, }, localize( 'treeInactiveSelectionForeground', 'Tree foreground color for the selected item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not.', ), ); export const treeInactiveSelectionBackground = registerColor( 'kt.tree.inactiveSelectionBackground', { dark: listInactiveSelectionBackground, light: listInactiveSelectionBackground, hcDark: listInactiveSelectionBackground, hcLight: listInactiveSelectionBackground, }, localize( 'treeInactiveSelectionBackground', 'Tree background color for the selected item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not.', ), ); export const treeActiveSelectionForeground = registerColor( 'kt.tree.activeSelectionForeground', { dark: listActiveSelectionForeground, light: listActiveSelectionForeground, hcDark: listActiveSelectionForeground, hcLight: listActiveSelectionForeground, }, localize( 'treeActiveSelectionForeground', 'Tree foreground color for the selected item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.', ), ); export const treeActiveSelectionBackground = registerColor( 'kt.tree.activeSelectionBackground', { dark: listActiveSelectionBackground, light: listActiveSelectionBackground, hcDark: listActiveSelectionBackground, hcLight: listActiveSelectionBackground, }, localize( 'treeActiveSelectionBackground', 'Tree background color for the selected item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.', ), ); export const treeInvalidItemForeground = registerColor( 'kt.tree.invalidItemForeground', { dark: listInvalidItemForeground, light: listInvalidItemForeground, hcDark: listInvalidItemForeground, hcLight: listInvalidItemForeground, }, localize( 'treeInvalidItemForeground', 'Tree foreground color for invalid items, for example an unresolved root in explorer.', ), );