Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/omgovich/react-colorful

🎨 A tiny (2,8 KB) color picker component for React and Preact apps
https://github.com/omgovich/react-colorful

a11y color color-picker hacktoberfest hex hooks picker preact react react-component tiny typescript-support zero-dependency

Last synced: about 1 month ago
JSON representation

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

Awesome Lists containing this project

README

        



react-colorful



npm


build


coverage


no dependencies


tree-shakeable


types included


react-colorful is a tiny color picker component for React and Preact apps.

## Features

- πŸ—œ **Small**: Just 2,8 KB gzipped ([13x lighter](#why-react-colorful) than **react-color**).
- 🌳 **Tree-shakeable**: Only the parts you use will be imported into your app's bundle.
- πŸš€ **Fast**: Built with hooks and functional components only.
- πŸ›‘ **Bulletproof**: Written in strict TypeScript and has 100% test coverage.
- πŸ—‚ **Typed**: Ships with [types included](#typescript-support)
- 😍 **Simple**: The interface is straightforward and easy to use.
- πŸ‘« **Cross-browser**: Works out-of-the-box for most browsers, regardless of version.
- πŸ“² **Mobile-friendly**: Supports mobile devices and touch screens.
- πŸ’¬ **Accessible**: Follows the [WAI-ARIA](https://www.w3.org/WAI/standards-guidelines/aria/) guidelines to support users of assistive technologies.
- πŸ’¨ **No dependencies**

## Live demos

- [Website](https://omgovich.github.io/react-colorful)
- [HEX Color Picker (CodeSandbox)](https://codesandbox.io/s/react-colorful-demo-u5vwp)
- [RGBA Color Picker (CodeSandbox)](https://codesandbox.io/s/react-colorful-rgb-o9q0t)

## Table of Contents

- [Getting Started](#getting-started)
- [Supported Color Models](#supported-color-models)
- [Customization](#customization)
- [How to paste or type a color?](#how-to-paste-or-type-a-color)
- [Code Recipes](#code-recipes)
- [TypeScript Support](#typescript-support)
- [Usage with Preact](#usage-with-preact)
- [Browser Support](#browser-support)
- [Why react-colorful?](#why-react-colorful)
- [Projects using react-colorful](#projects-using-react-colorful)
- [Ports](#ports)

## Getting Started

```
npm install react-colorful
```

```js
import { HexColorPicker } from "react-colorful";

const YourComponent = () => {
const [color, setColor] = useState("#aabbcc");
return ;
};
```

## Supported Color Models

We provide 12 additional color picker components for different color models, unless your app needs a HEX string as an input/output format.

How to use another color model

#### Available pickers

| Import | Value example |
| --------------------------- | ---------------------------------- |
| `{ HexColorPicker }` | `"#ffffff"` |
| `{ HexAlphaColorPicker }` | `"#ffffff88"` |
| `{ RgbColorPicker }` | `{ r: 255, g: 255, b: 255 }` |
| `{ RgbaColorPicker }` | `{ r: 255, g: 255, b: 255, a: 1 }` |
| `{ RgbStringColorPicker }` | `"rgb(255, 255, 255)"` |
| `{ RgbaStringColorPicker }` | `"rgba(255, 255, 255, 1)"` |
| `{ HslColorPicker }` | `{ h: 0, s: 0, l: 100 }` |
| `{ HslaColorPicker }` | `{ h: 0, s: 0, l: 100, a: 1 }` |
| `{ HslStringColorPicker }` | `"hsl(0, 0%, 100%)"` |
| `{ HslaStringColorPicker }` | `"hsla(0, 0%, 100%, 1)"` |
| `{ HsvColorPicker }` | `{ h: 0, s: 0, v: 100 }` |
| `{ HsvaColorPicker }` | `{ h: 0, s: 0, v: 100, a: 1 }` |
| `{ HsvStringColorPicker }` | `"hsv(0, 0%, 100%)"` |
| `{ HsvaStringColorPicker }` | `"hsva(0, 0%, 100%, 1)"` |

#### Code example

```js
import { RgbColorPicker } from "react-colorful";

const YourComponent = () => {
const [color, setColor] = useState({ r: 50, g: 100, b: 150 });
return ;
};
```

[Live demo β†’](https://codesandbox.io/s/react-colorful-rgb-o9q0t)

## Customization

The easiest way to tweak **react-colorful** is to create another stylesheet to override the default styles.

```css
.your-component .react-colorful {
height: 240px;
}
.your-component .react-colorful__saturation {
border-radius: 4px 4px 0 0;
}
.your-component .react-colorful__hue {
height: 40px;
border-radius: 0 0 4px 4px;
}
.your-component .react-colorful__hue-pointer {
width: 12px;
height: inherit;
border-radius: 0;
}
```

[See examples β†’](https://codesandbox.io/s/react-colorful-customization-demo-mq85z?file=/src/styles.css)

## How to paste or type a color?

As you probably noticed the color picker itself does not include an input field, but do not worry if you need one. **react-colorful** is a modular library that allows you to build any picker you need. Since `v2.1` we provide an additional component that works perfectly in pair with our color picker.

How to use HexColorInput

```js
import { HexColorPicker, HexColorInput } from "react-colorful";

const YourComponent = () => {
const [color, setColor] = useState("#aabbcc");
return (





);
};
```

[Live demo β†’](https://codesandbox.io/s/react-colorful-hex-input-demo-0k2fx)

| Property | Default | Description |
| ---------- | ------- | -------------------------------------------- |
| `alpha` | `false` | Allows `#rgba` and `#rrggbbaa` color formats |
| `prefixed` | `false` | Enables `#` prefix displaying |

`HexColorInput` does not have any default styles, but it also accepts all properties that a regular `input` tag does (such as `className`, `placeholder` and `autoFocus`). That means you can place and modify this component as you like. Also, that allows you to combine the color picker and input in different ways:

```jsx

```

## Code Recipes

- [Value debouncing](https://codesandbox.io/s/dgqn0?file=/src/DebouncedPicker.js)
- [Popover picker](https://codesandbox.io/s/opmco?file=/src/PopoverPicker.js)
- [Preset colors (color squares)](https://codesandbox.io/s/bekry?file=/src/SwatchesPicker.js)
- [Picker that accepts any color input](https://codesandbox.io/s/6fp23?file=/src/CustomPicker.js)
- [Text field to be able to type/copy/paste a color](https://codesandbox.io/s/0k2fx?file=/src/App.js)
- [Custom styles and layout](https://codesandbox.io/s/mq85z?file=/src/styles.css)

## TypeScript Support

**react-colorful** supports TypeScript and ships with types in the library itself; no need for any other install.

How you can get the most from our TypeScript support

While not only typing its own functions and variables, it can also help you type yours. Depending on the component you are using, you can also import the type that is associated with the component. For example, if you are using our HSL color picker component, you can also import the `HSL` type.

```ts
import { HslColorPicker, HslColor } from "react-colorful";

const myHslValue: HslColor = { h: 0, s: 0, l: 0 };
```

Take a look at [Supported Color Models](#supported-color-models) for more information about the types and color formats you may want to use.

## Usage with Preact

**react-colorful** will work flawlessly with Preact out-of-the-box if you are using [WMR](https://github.com/preactjs/wmr), [Preact-CLI](https://github.com/preactjs/preact-cli), [NextJS with Preact](https://github.com/vercel/next.js/tree/canary/examples/using-preact), or a few other tools/boilerplates thanks to aliasing.

If you are using another solution, please refer to the [Aliasing React to Preact](https://preactjs.com/guide/v10/getting-started#aliasing-react-to-preact) section of the Preact documentation.

Preact + Typescript

**react-colorful**, like all other React + TS projects, can potentially cause issues in a Preact + TS application if you have the `@types/react` package installed, either as a direct dependency or a dependency of a dependency. For example, the Preact TS template comes with `@types/enzyme` which has `@types/react` as a dependency.

To fix this, create a `declaration.d.ts` file or add to your existing:

```
import React from "react";

declare global {
namespace React {
interface ReactElement {
nodeName: any;
attributes: any;
children: any;
}
}
}
```

This will correct the types and allow you to use **react-colorful** along with many other React + TS libraries in your Preact + TS application.

## Browser Support

It would be an easier task to list all of the browsers and versions that **react-colorful** does not support! We regularly test against browser versions going all the way back to 2013 and this includes IE11.

**react-colorful** works out-of-the-box for most browsers, regardless of version, and only requires an `Object.assign` polyfill be provided for full IE11 support.

## Why react-colorful?

Today each dependency drags more dependencies and increases your project’s bundle size uncontrollably. But size is very important for everything that intends to work in a browser.

**react-colorful** is a simple color picker for those who care about their bundle size and client-side performance. It is fast and lightweight because:

- has no dependencies (no risks in terms of vulnerabilities, no unexpected bundle size changes);
- built with hooks and functional components only (no classes and polyfills for them);
- ships only a minimal amount of manually optimized color conversion algorithms (while most of the popular pickers import entire color manipulation libraries that increase the bundle size by more than 10 KB and make your app slower).

To show you the problem that **react-colorful** is trying to solve, we have performed a simple benchmark (using [bundlephobia.com](https://bundlephobia.com)) against popular React color picker libraries:

| Name | Bundle size | Bundle size (gzip) | Dependencies |
| ------------------ | ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| **react-colorful** | [![](https://badgen.net/bundlephobia/min/react-colorful?color=6ead0a&label=)](https://bundlephobia.com/result?p=react-colorful) | [![](https://badgen.net/bundlephobia/minzip/react-colorful?color=6ead0a&label=)](https://bundlephobia.com/result?p=react-colorful) | [![](https://badgen.net/bundlephobia/dependency-count/react-colorful?color=6ead0a&label=)](https://bundlephobia.com/result?p=react-colorful) |
| react-color | [![](https://badgen.net/bundlephobia/min/react-color?color=red&label=)](https://bundlephobia.com/result?p=react-color) | [![](https://badgen.net/bundlephobia/minzip/react-color?color=red&label=)](https://bundlephobia.com/result?p=react-color) | [![](https://badgen.net/bundlephobia/dependency-count/react-color?color=red&label=)](https://bundlephobia.com/result?p=react-color) |
| react-input-color | [![](https://badgen.net/bundlephobia/min/react-input-color?color=red&label=)](https://bundlephobia.com/result?p=react-input-color) | [![](https://badgen.net/bundlephobia/minzip/react-input-color?color=red&label=)](https://bundlephobia.com/result?p=react-input-color) | [![](https://badgen.net/bundlephobia/dependency-count/react-input-color?color=red&label=)](https://bundlephobia.com/result?p=react-input-color) |
| rc-color-picker | [![](https://badgen.net/bundlephobia/min/rc-color-picker?color=red&label=)](https://bundlephobia.com/result?p=rc-color-picker) | [![](https://badgen.net/bundlephobia/minzip/rc-color-picker?color=red&label=)](https://bundlephobia.com/result?p=rc-color-picker) | [![](https://badgen.net/bundlephobia/dependency-count/rc-color-picker?color=red&label=)](https://bundlephobia.com/result?p=rc-color-picker) |

## Projects using react-colorful

Storybook β€” the most widely used open-source tool for developing UI components


Storybook

Resume.io β€” online resume builder with over 9,400,000 users worldwide


resume.io

Wireflow.co β€” free tool for creating modern user flow prototypes


wireflow.co

MagicPattern.design β€” unique geometric pattern generator


magicpattern.design

Viewst.com β€” online tool for designing, creating and automating ad campaigns


viewst.com

Omatsuri.app β€” progressive web application with a lot of different frontend focused tools


omatsuri.app

Leva β€” open source extensible GUI panel made for React


pmndrs/leva

Composable β€” online tool for creating custom vector illustrations


composable.art

## Backers and sponsors

## Ports

Not using React or Preact? Not a problem! Check out the list of react-colorful ports adapted to your favourite framework or technology of choice:

- **[vanilla-colorful](https://github.com/web-padawan/vanilla-colorful)** β€” a react-colorful reimplementation in vanilla Custom Elements, generously ported by [@web-padavan](https://github.com/web-padawan).

- **[angular-colorful](https://github.com/fil0157/angular-colorful)** β€” a react-colorful rewritten for use with the Angular framework, lovingly ported by [@fil0157](https://github.com/fil0157).

If your port is not in the list, reach us out via [GitHub issues](https://github.com/omgovich/react-colorful/issues).