react-colorful icon indicating copy to clipboard operation
react-colorful copied to clipboard

🎨 A tiny (2,8 KB) color picker component for React and Preact apps

Results 37 react-colorful issues
Sort by recently updated
recently updated
newest added

Recently I upgraded `jest` from v27 to v28 in my app. I noticed that tests that import `react-colorful` started to fail with the following error message: `SyntaxError: Cannot use import...

![image](https://user-images.githubusercontent.com/35633051/182561722-d5e0741e-3dd7-4300-9bc4-8649faa9cedf.png) ![image](https://user-images.githubusercontent.com/35633051/182562022-7ab78bd4-0ccf-4bf9-9250-e2e384233b3d.png) steps to reproduce: open link from docs https://codesandbox.io/s/react-colorful-demo-u5vwp?file=/src/App.js drag slider right left see dot

A common pattern in React is to have global state management. Even with debouncing, frequent updates on any moderately large global state is expensive. Would it be possible to add...

Fix: #163 I believe this error is due to an unavoidable rounding error in the process of inter-converting RGB and HSV with integer values. However, I thought this error would...

Previously the fill thumb was not perfectly aligned to the center, i switched to flexbox to align it correctly. I've applied this fix to my website and thought to share...

I'm using this on a legacy project and for some reason it is overwriting the `$` variable which is used by jQuery. This is breaking our project. Can you switch...

here is a sample of the code, I just embedded your HexColorPicker component under the root shadow https://codesandbox.io/s/react-colorful-demo-forked-6vivtb?file=/src/App.js ```ts import React, { useState } from "react"; import { HexColorPicker }...

For those that use UI frameworks (i.e. MUI), it would be nice if the HexColorInput could allow the rendering to be outsource to the UI framework input, with the logic...

Hi, thanks for the great library! I'm using it with Preact, and I noticed an issue where dragging the saturation slider all the way to a corner (`#fff` or `#000`)...