theme-gen

Review·Scanned 2/18/2026

This skill generates a design system/theme from brand colors using the OpenAI API. It requires OPENAI_API_KEY, invokes openai.chat.completions.create (network access), and provides CLI usage like npx ai-theme that can write output files such as ./theme.css.

from clawhub.ai·ve080d03·40.8 KB·0 installs
Scanned from 1.0.1 at e080d03 · Transparency log ↗
$ vett add clawhub.ai/lxgicstudios/theme-genReview findings below

ai-theme

Generate a complete design system from your brand colors. Gets you a full color palette, typography scale, spacing, shadows, and more.

Install

npm install -g ai-theme

Usage

npx ai-theme "#FF4500" "#1A1A2E"
# Generates CSS custom properties

npx ai-theme "#FF4500" "#1A1A2E" -f tailwind
# Generates tailwind.config.js theme extension

npx ai-theme "#FF4500" "#1A1A2E" -f json -o tokens.json
# Saves design tokens as JSON

Setup

export OPENAI_API_KEY=sk-...

Options

  • -f, --format <type> - Output format: css, tailwind, json (default: css)
  • -o, --output <path> - Save to file

License

MIT