mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-27 14:44:12 +00:00
6 lines
213 B
TypeScript
6 lines
213 B
TypeScript
import { baseColors } from "@/registry/base-colors"
|
|
|
|
export const THEMES = baseColors
|
|
.filter((theme) => !["slate", "stone", "gray", "zinc"].includes(theme.name))
|
|
.sort((a, b) => a.name.localeCompare(b.name))
|