mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-29 23:55:02 +00:00
6 lines
175 B
TypeScript
6 lines
175 B
TypeScript
import { baseColors } from "@/registry/registry-base-colors"
|
|
|
|
export const THEMES = baseColors.filter(
|
|
(theme) => !["slate", "stone", "gray", "zinc"].includes(theme.name)
|
|
)
|