mirror of
https://github.com/ourongxing/newsnow.git
synced 2025-01-31 19:08:05 +08:00
7 lines
254 B
TypeScript
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">
|