Smart Theming Generator

utilities

AI-powered theme generator that creates a full design token set from a base color.

Preview

Smart Theme Generator

Upload an image to extract a color palette using AI

Extracted Colors

Colors extracted from your image. Edit them to refine the theme.

Installation

npm install @launchapp/design-system
Import
import { SmartThemingGenerator } from "@launchapp/design-system";

Examples

Generate theme from brand color

<SmartThemingGenerator  defaultColor="#3b82f6"  onGenerate={(tokens) => console.log("generated tokens:", tokens)}/>

Props

PropTypeDefaultDescription
onGenerate
(theme: ThemeTokens) => voidCalled with generated theme tokens.
defaultColor
stringStarting brand color hex value.