mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
* feat: init * fix * fix * fix * feat * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: implement icons * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: update init command * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: dialog * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add registry:base item type * feat: rename frame to canva * fix * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fi * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add all colors * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add outfit font * fix * fix * fix * fix * fix * chore: changeset * fix * fix * fix * fix * fix * fix * fix * fix
29 lines
704 B
TypeScript
29 lines
704 B
TypeScript
import { useAtom } from "jotai"
|
|
import { atomWithStorage } from "jotai/utils"
|
|
|
|
import { type ColorFormat } from "@/lib/colors"
|
|
import { useMounted } from "@/hooks/use-mounted"
|
|
|
|
type Config = {
|
|
format: ColorFormat
|
|
lastCopied: string
|
|
}
|
|
|
|
const colorsAtom = atomWithStorage<Config>("colors", {
|
|
format: "hsl",
|
|
lastCopied: "",
|
|
})
|
|
|
|
export function useColors() {
|
|
const [colors, setColors] = useAtom(colorsAtom)
|
|
const mounted = useMounted()
|
|
|
|
return {
|
|
isLoading: !mounted,
|
|
format: colors.format,
|
|
lastCopied: colors.lastCopied,
|
|
setFormat: (format: ColorFormat) => setColors({ ...colors, format }),
|
|
setLastCopied: (lastCopied: string) => setColors({ ...colors, lastCopied }),
|
|
}
|
|
}
|