Smart Theming Generator

utilities

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

Preview

No preview available

Check the code examples below.

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.