Interface AdjustedColorButtonListProps

interface AdjustedColorButtonListProps {
    colorDefs: AdjustedColorDefWithLabel[] | AdjustedColorDefWithLabel[][];
    compareRGB?: boolean;
    darkMode?: boolean;
    onPreviewColorDef?: ((colorDef) => void);
    onSelectColorDef?: ((colorDef) => void);
    previewColor?: AdjustedColor;
    schemeColorLookup: SchemeColorLookup;
    selectedColor?: AdjustedColor;
    swatchProps?: Partial<SwatchProps>;
    title?: string;
}

Hierarchy

  • HTMLAttributes<HTMLElement>
    • AdjustedColorButtonListProps

Properties

compareRGB?: boolean
darkMode?: boolean
onPreviewColorDef?: ((colorDef) => void)

Type declaration

onSelectColorDef?: ((colorDef) => void)

Type declaration

previewColor?: AdjustedColor
schemeColorLookup: SchemeColorLookup
selectedColor?: AdjustedColor
swatchProps?: Partial<SwatchProps>
title?: string