React Color Colorful
Colorful Component is a subcomponent of @react-color
.
Install
npm i @uiw/react-color-colorful
Usage
import React, { useState } from 'react';
import Colorful from '@uiw/react-color-colorful';
export default function Demo() {
const [hex, setHex] = useState("#59c09a");
return (
<>
<Colorful
color={hex}
onChange={(color) => {
setHex(color.hexa);
}}
/>
<div style={{ background: hex, marginTop: 30, padding: 10 }}>
{hex}
</div>
</>
);
}
import React, { useState } from 'react';
import Colorful from '@uiw/react-color-colorful';
export default function Demo() {
const [hex, setHex] = useState("#59c09a");
const [disableAlpha, setDisableAlpha] = useState(false);
return (
<>
<label>
<input
type="checkbox"
checked={disableAlpha}
onChange={(evn) => setDisableAlpha(evn.target.checked)}
/>
{disableAlpha ? "Hide" : "Show"} Alpha
</label>
<Colorful
color={hex}
disableAlpha={disableAlpha}
onChange={(color) => {
setHex(color.hexa);
}}
/>
<div style={{ background: hex, marginTop: 30, padding: 10 }}>
{hex}
</div>
</>
);
}
Props
import React from 'react';
import { HsvaColor, ColorResult } from '@uiw/color-convert';
export interface ColorfulProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange' | 'color'> {
prefixCls?: string;
onChange?: (color: ColorResult) => void;
color?: string | HsvaColor;
disableAlpha?: boolean;
}
declare const Colorful: React.ForwardRefExoticComponent<ColorfulProps & React.RefAttributes<HTMLDivElement>>;
export default Colorful;
Contributors
As always, thanks to our amazing contributors!
Made with contributors.
License
Licensed under the MIT License.