/** * Configuration for the auth-background component. */ export interface AuthBackgroundMetadata { /** * Number of animated wave lines. * @default 45 */ waveCount?: number; /** * Array of colors for waves. Picks randomly from this palette. * @default ['#e0e0e0', '#bdbdbd', '#9e9e9e', '#757575', '#616161', '#424242'] */ waveColors?: string[]; /** * Show grain texture overlay. * @default true */ showGrain?: boolean; /** * Show glassmorphism layer. * @default true */ showGlass?: boolean; /** * Minimum height of the background container. * @default 'calc(100vh - 120px)' */ minHeight?: string; }