/** * Background Presets - Compile to Code Mode sketches * These are aesthetic-first presets that always look good * All code uses p5-compatible APIs only */ import { BackgroundPreset, ColorPalette, LoopConfig } from '../types'; export interface PresetColors { background: string; foreground: string; accent?: string; } export declare function getPaletteColors(palette?: ColorPalette): PresetColors; export declare function compileBackgroundPreset(preset: BackgroundPreset, palette?: ColorPalette, loop?: LoopConfig): string; //# sourceMappingURL=backgrounds.d.ts.map