Theme Picker

Color theme selector with preview swatches.

Preview

Choose a theme

Switch palettes instantly to match your brand.

Installation

terminal
$
Other package managers
bunx --bun shadcn@latest add https://trents.tech/r/theme-picker.json

Usage

theme-picker-demo.tsx
import ThemePicker from "@/components/blocks/theme-picker"

export default function ThemePickerDemo() {
  return (
    <ThemePicker
      // Update headline copy for your theme picker.
      title="Choose a theme"
      description="Switch palettes instantly to match your brand."
    />
  )
}
0