UNPKG

reablocks

Version:
19 lines (18 loc) 846 B
import { CommandPaletteInputTheme } from './CommandPaletteInput'; import { CommandPaletteItemTheme } from './CommandPaletteItem'; import { CommandPaletteSectionTheme } from './CommandPaletteSection'; export interface CommandPaletteTheme { /** CSS class applied to the root command palette container. */ base: string; /** CSS class applied to the inner scrollable area. */ inner: string; /** CSS class applied to the empty state container when no results are present. */ emptyContainer: string; /** Theme for the command palette input. */ input: CommandPaletteInputTheme; /** Theme for individual command palette items. */ item: CommandPaletteItemTheme; /** Theme for command palette sections. */ section: CommandPaletteSectionTheme; } export declare const commandPaletteTheme: CommandPaletteTheme;