diff --git a/src/stores/colors.ts b/src/stores/colors.ts new file mode 100644 index 0000000..c63ee5a --- /dev/null +++ b/src/stores/colors.ts @@ -0,0 +1,3 @@ +import { atomWithStorage } from 'jotai/utils'; + +export const currentPickedColor = atomWithStorage('picked', '000000');