/** * CLI Design Palette Command * OKLCH brand-seed picker — returns one anchor seed color + mood + composition strategy. * * github.com/monoes/monomind */ import type { Command } from '../types.js'; export interface PaletteSeed { id: string; oklch: [number, number, number]; mood: string; strategy: string; } export interface DesignPaletteResult { seed: PaletteSeed; oklchCss: string; hex?: string; } export declare const SEEDS: PaletteSeed[]; export declare function hashUnit(key: string): number; export declare function weightedPick(seeds: PaletteSeed[], unit: number): PaletteSeed; export declare function toOklchCss([L, C, H]: [number, number, number]): string; export declare function hueWord(H: number): string; export declare const paletteSubcommand: Command; export default paletteSubcommand; //# sourceMappingURL=design-palette.d.ts.map