You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
useTheme: Replaced canvas-based colorToHex with DOM-based approach using a persistent hidden element and getComputedStyle. Eliminates 10 canvas create/draw/read operations per theme change.
useTheme: Colors are now computed asynchronously in useEffect after CSS has applied, not synchronously during render. Removed Proxy entirely — colors are plain React state.