mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
10 lines
247 B
TypeScript
10 lines
247 B
TypeScript
import { THEMES } from "@/registry/themes"
|
|
|
|
export const BASE_COLORS = THEMES.filter((theme) =>
|
|
["neutral", "stone", "zinc", "mauve", "olive", "mist", "taupe"].includes(
|
|
theme.name
|
|
)
|
|
)
|
|
|
|
export type BaseColor = (typeof BASE_COLORS)[number]
|