Get started with these simple installation steps.
npm install react-extract-colors
yarn add react-extract-colors
pnpm add react-extract-colors
Once the package is installed, you can import the library using import
approach:
import { useExtractColors } from "react-extract-colors";
- mainly supported image formats: (
png, jpg, jpeg, svg, gif and more...
)
When you have an image and you want to extract the dominant color, you can use the hook. The hook returns an object containing various properties.
If you only need the dominant color, you can use the dominantColor
property.
You can also get the darker and lighter variants to create a grandient color.
import { useExtractColors } from "react-extract-colors";
const image = "https://picsum.photos/id/237/200/300";
const { colors, dominantColor, darkerColor, lighterColor, loading, error } =
useExtractColors(image);
Property | Description |
---|---|
colors |
An array containing the top dominant colors |
dominantColor |
The dominant color of the image |
darkerColor |
A darker variant of the dominant color |
lighterColor |
A lighter variant of the dominant color |
loading |
Indicates whether the image is loading |
error |
Indicates whether the image has an error |
Explore a basic example to understand its usage, you can utilize it in various ways.
// import the hook
import { useExtractColors } from "react-extract-colors";
const image = "https://picsum.photos/id/237/200/300";
const App = () => {
// Use the hook to extract the dominant color
const { dominantColor, darkerColor, lighterColor } = useExtractColors(image);
return (
// set a linear gradient with colors extracted
<div
style={{
backgroundColor: `linear-gradient(45deg, ${dominantColor}, ${darkerColor}, ${lighterColor})`,
}}
>
<h1>Extract Color</h1>
<img src={image} alt="random image" width="200" height="300" />
</div>
);
};
export default App;
You can also pass settings to the hook, to customize the extraction process.
Note: passing settings to the hook is an optional step.
// import the hook
import { useExtractColors } from "react-extract-colors";
const image = "https://picsum.photos/id/237/200/300";
const App = () => {
// Use the hook to extract the dominant color
const { colors } = useExtractColors(image, {
maxColors: 3,
format: "hex",
maxSize: 200,
orderBy: "vibrance",
});
const [color1, color2, color3] = colors;
return (
// set the background color to the dominant color
<div style={{ border: `1px solid ${color1}` }}>
<h1 style={{ color: color3 }}>Extract Color</h1>
<img src={image} alt="random image" width="200" height="300" />
</div>
);
};
export default App;
The maxColors parameter determines the number of colors to be included in the colors
array. When you provide an image to the hook, it extracts and counts the colors, returning the most dominant ones based on the specified limit.
Note: While you can retrieve more colors than the recommended limit, use this feature judiciously as its effectiveness varies with each image.
You can specify the color format using one of the following options: rgba
, rgb
, hex
, hsl
, or hsv
.
The maxSize is the size at which the image will be processed to extract colors. The smaller the size, the faster the processing may be, but it affects color accuracy to some extent. If you need more precision, you can set a higher value at the expense of sacrificing some speed.
The colorSimilarityThreshold
parameter defines the minimum similarity between colors to be considered identical. If you want to avoid retrieving colors that look very similar, you can adjust this value. A threshold of 0
will return all detected colors without filtering for similarity.
The sortBy
parameter controls the sorting of the returned colors. You can select from the following options:
-
vibrance
: Sorts colors by brightness, giving priority to the most vibrant ones. -
dominance
: Sorts colors based on how frequently they appear in the image.
Parameter | Type | Description | Options (recommended) |
---|---|---|---|
maxColors |
number |
Number of colors to get in the colors array default: 3
|
0-100 |
format |
string |
Format to get the colors default: rgba |
rgba rgb hex hsl hsv
|
maxSize |
number |
Size to extract the colors default: 18 | 0-500 |
colorSimilarityThreshold |
number |
Minimum similarity threshold for colors to be considered identical. default: 50 | 0-500 |
sortBy |
string |
Determines the sorting method for the returned colors default: dominance |
vibrance dominance
|
The React Extract Colors hook was created by Jesús Aguilar
Licensed under the MIT License - see the LICENSE.md file for details.