Completed color picker, value editor, desktop layout.

This commit is contained in:
Jay
2025-08-13 18:05:29 -04:00
parent ae02e49ce2
commit 7a2e4cf2ae
22 changed files with 533 additions and 339 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
import { createContext, useContext, useReducer } from "react";
import { createContext, useReducer } from "react";
import type { ReactNode } from "react";
import * as colorlib from "colorlib";
import { colorReducer, createColorActions } from "@hooks/color";
import type { ColorActions } from "@hooks/color";
import { colorReducer, createColorActions } from "@/hooks/color";
import type { ColorActions } from "@/hooks/color";
interface SelectedColorContextType {
selectedColor: colorlib.Color;