
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
react-color-palette
Advanced tools
yarn add react-color-palette
npm install react-color-palette
import { ColorPicker, useColor } from "react-color-palette";
import "react-color-palette/css";
export function App() {
const [color, setColor] = useColor("#561ecb");
return <ColorPicker color={color} onChange={setColor} />;
}
rgb()
in useColor()
import { ColorPicker, useColor } from "react-color-palette";
import "react-color-palette/css";
export function App() {
const [color, setColor] = useColor("rgb(86 30 203)");
return <ColorPicker color={color} onChange={setColor} />;
}
<named-color>
in useColor()
import { ColorPicker, useColor } from "react-color-palette";
import "react-color-palette/css";
export function App() {
const [color, setColor] = useColor("cyan");
return <ColorPicker color={color} onChange={setColor} />;
}
import { Saturation, Hue, useColor } from "react-color-palette";
import "react-color-palette/css";
export function App() {
const [color, setColor] = useColor("hsl(120 100% 50% / .5)");
return (
<div className="custom-layout">
<Saturation height={300} color={color} onChange={setColor} />
<Hue color={color} onChange={setColor} />
</div>
);
}
import { ColorPicker, useColor } from "react-color-palette";
import "react-color-palette/css";
export function App() {
const [color, setColor] = useColor("#123123");
return <ColorPicker hideInput={["rgb", "hsv"]} color={color} onChange={setColor} />
}
import { ColorPicker, useColor, type IColor } from "react-color-palette";
import "react-color-palette/css";
export function App() {
const [color, setColor] = useColor("#123123");
const onChangeComplete = (color: IColor) => localStorage.setItem("color", color.hex);
return <ColorPicker hideInput={["rgb", "hsv"]} color={color} onChange={setColor} onChangeComplete={onChangeComplete} />
}
<ColorPicker />
The main component, which includes: <Saturation />, <Hue />, <Alpha /> and <Fields /> components for instant use.
If you need a custom layout, then you can use <Saturation />, <Hue /> and <Alpha /> components separately, which are also exported from the library.
Prop | Type | Default | Description |
---|---|---|---|
height | number | 200 | Height of the Saturation component in pixels. |
hideAlpha | boolean | false | Hides the Alpha component. |
hideInput | (keyof IColor)[] | boolean | false | If boolean: hides all inputs if true or displays all inputs if false. If array: hides all inputs listed in the array. |
color | IColor | Current color. | |
disabled | boolean | false | Disables interactivity. |
onChange | Function | Сallback function will be fired when color changes. | |
onChangeComplete | Function | Callback function will be fired when the interaction is complete with the color picker. |
<Saturation />
Prop | Type | Default | Description |
---|---|---|---|
height | number | Height of the saturation element in pixels. | |
color | IColor | Current color. | |
disabled | boolean | false | Disables interactivity. |
onChange | Function | Сallback function will be fired when color changes. | |
onChangeComplete | Function | Callback function will be fired when the interaction is complete with the saturation picker. |
<Hue />
Prop | Type | Default | Description |
---|---|---|---|
color | IColor | Current color. | |
disabled | boolean | false | Disables interactivity. |
onChange | Function | Сallback function will be fired when color changes. | |
onChangeComplete | Function | Callback function will be fired when the interaction is complete with the hue picker. |
<Alpha />
Prop | Type | Default | Description |
---|---|---|---|
color | IColor | Current color. | |
disabled | boolean | false | Disables interactivity. |
onChange | Function | Сallback function will be fired when color changes. | |
onChangeComplete | Function | Callback function will be fired when the interaction is complete with the alpha picker. |
useColor()
Arg | Type | Default | Description |
---|---|---|---|
initialColor | TColor | Initial сolor. |
TColor
Value can be specified using one of the methods listed below:
<named-color>
<hex-color>
hsl()
, hwb()
or rgb()
IColor
Field | Type |
---|---|
hex | string |
rgb | IColorRgb |
hsv | IColorHsv |
IColorRgb
Field | Type |
---|---|
r | number |
g | number |
b | number |
a | number |
IColorHsv
Field | Type |
---|---|
h | number |
s | number |
v | number |
a | number |
Code released under the MIT license.
FAQs
🎨 Lightweight Color Picker component for React.
The npm package react-color-palette receives a total of 41,941 weekly downloads. As such, react-color-palette popularity was classified as popular.
We found that react-color-palette demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.