import { SwatchEntry, SwatchSchemeSetting } from './color_functions/color_module'; export type SwatchScheme = { light: Record; dark: Record; }; export type SwatchSchemeSource = { colors: SwatchEntry[]; setting: SwatchSchemeSetting | null; }; export type SwatchSchemeStorage = { source?: SwatchSchemeSource; scheme?: SwatchScheme; cssVariables?: string; scssVariables?: string; jsVariables?: string; };