newsnow/shared/colors.ts
2024-10-12 21:31:33 +08:00

7 lines
254 B
TypeScript

import { colors as c } from "unocss/preset-mini"
import { typeSafeObjectKeys } from "./type.util"
export const colors = typeSafeObjectKeys(c)
export type Color = Exclude<typeof colors[number], "current" | "inherit" | "transparent" | "black" | "white">