/** * Generates a full MD3 ColorScheme from a hex seed color. * * Uses @material/material-color-utilities (listed in `dependencies` so it * ships with the package — not a peer dep). * * @param seedHex - Source color as hex string, e.g. '#1976D2' * @param dark - If true, returns the dark-mode palette. Default: false. * @returns Full {@link ColorScheme} with all 30 MD3 color roles. */ import type { ColorScheme } from '../tokens/colors'; export declare function generatePalette(seedHex: string, dark?: boolean): ColorScheme; //# sourceMappingURL=generatePalette.d.ts.map