Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikbry/material-ui-color
The lightest colorpicker, palette, colorinput, colorbutton ⚡ No dependencies. It uses React hooks, support Typescript theming and more !
https://github.com/mikbry/material-ui-color
color-palette colorbox colorbutton colorinput colorpicker component es6 hooks material-ui material-ui-color-picker npm reactjs typescript
Last synced: about 4 hours ago
JSON representation
The lightest colorpicker, palette, colorinput, colorbutton ⚡ No dependencies. It uses React hooks, support Typescript theming and more !
- Host: GitHub
- URL: https://github.com/mikbry/material-ui-color
- Owner: mikbry
- License: mit
- Created: 2020-02-25T18:18:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-02T18:42:58.000Z (over 1 year ago)
- Last Synced: 2024-11-08T17:56:56.591Z (8 days ago)
- Topics: color-palette, colorbox, colorbutton, colorinput, colorpicker, component, es6, hooks, material-ui, material-ui-color-picker, npm, reactjs, typescript
- Language: JavaScript
- Homepage: https://mikbry.github.io/material-ui-color/
- Size: 11.3 MB
- Stars: 145
- Watchers: 1
- Forks: 34
- Open Issues: 35
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# `material-ui-color` picker and other components
[![Build Status][action-image]][action-url]
[![codecov][codecov-image]][codecov-url]
[![NPM version][npm-image]][npm-url]
[![License][license-image]][license-url]
[![minisize][min-image]][min-url]
[![dependency status][deps-svg]][deps-url]
[![dev dependency status][dev-deps-svg]][dev-deps-url]
[![peer dependency status][peer-deps-svg]][peer-deps-url]
[![Downloads][downloads-image]][downloads-url][action-image]: https://github.com/mikbry/material-ui-color/workflows/Build%20and%20Deploy/badge.svg
[action-url]: https://mikbry.github.io/material-ui-color/
[codecov-image]: https://codecov.io/gh/mikbry/material-ui-color/branch/master/graph/badge.svg?token=K4P0vnM5fh
[codecov-url]: https://codecov.io/gh/mikbry/material-ui-color
[npm-image]: https://img.shields.io/npm/v/material-ui-color.svg
[npm-url]: https://npmjs.org/package/material-ui-color
[license-image]: https://img.shields.io/github/license/mikbry/material-ui-color
[License-url]:https://github.com/mikbry/material-ui-color/blob/master/LICENSE
[min-image]:https://badgen.net/bundlephobia/min/material-ui-color
[min-url]:https://bundlephobia.com/result?p=material-ui-color
[deps-svg]: https://david-dm.org/mikbry/material-ui-color.svg
[deps-url]: https://david-dm.org/mikbry/material-ui-color
[dev-deps-svg]: https://david-dm.org/mikbry/material-ui-color/dev-status.svg
[dev-deps-url]: https://david-dm.org/mikbry/material-ui-color#info=devDependencies
[peer-deps-svg]: https://david-dm.org/mikbry/material-ui-color/peer-status.svg
[peer-deps-url]: https://david-dm.org/mikbry/material-ui-color#info=peerDependencies
[downloads-image]: http://img.shields.io/npm/dm/material-ui-color.svg
[downloads-url]: http://npm-stat.com/charts.html?package=material-ui-color> Collections of color components for [material-ui](https://github.com/mui-org/material-ui). No dependencies, small, highly customizable and theming support !
![Video of ColorPicker](./images/muicc-v0-2.webp)
## Contents
- [Why another ColorPicker?](#why-another-colorpicker)
- [Documentation](#documentation)
- [Requirements](#requirements)
- [Install](#install)
- [Usage](#usage)
- [Roadmap](#roadmap)
- [Contribute](#contribute)
- [License](#license)## Why another ColorPicker ?
- Fully compatible with Material-UI : theming and low level components
- Highly customizable ColorPicker : gradient picker, palette, input format, deferred mode
- Small in size (<30kb) without any direct dependencies
- Use modern React hook and coding conventions
- Documentation made with Storybook, using Component Story Format and MDX## Documentation
Full documentation is available here :
https://mikbry.github.io/material-ui-color/
### Examples
> You can find examples [here](EXAMPLES.md) and [here](/examples).
Also in codesanbox
- Javascript : https://codesandbox.io/s/material-ui-color-qb4vm?file=/src/App.jsx
- Typescript : https://codesandbox.io/s/material-ui-color-picker-qvcg3?file=/src/App.tsx
## Requirements
- Works on modern browsers supporting ES6+ (Not compatible with IE)
- React and Material-UI frameworks## Install
```bash
yarn add material-ui-color
```Or using npm
```bash
npm install material-ui-color
```## Usage
you need to have in your dependencies:
```
"@mui/material": "^4.11.2",
"material-ui-popup-state": "^1.7.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
````material-ui-color` bring 5 components.
### ``
A popover component to display a color tool box. It uses `ColorBox` and `material-ui-popup-state`.
```javascript
import { ColorPicker } from 'material-ui-color';export const Container = () => (
);
```At first it display a button + an input
[ColorPicker documentation](https://mikbry.github.io/material-ui-color/?path=/story/components-colorpicker--basic)
### ``
A component to display a color tool box
```javascript
import { ColorBox } from 'material-ui-color';export const Container = () => (
);
```[ColorBox documentation](https://mikbry.github.io/material-ui-color/?path=/story/components-colorbox--basic)
### ``
An input component to display/edit color values in different format (plain, hex, rgb, hsl, hsv).
```javascript
import { ColorInput } from 'material-ui-color';export const Container = () => (
);
```[ColorInput documentation](https://mikbry.github.io/material-ui-color/?path=/story/components-colorinput--basic)
### ``
A component to display a grid of color buckets.
```javascript
import { ColorPalette } from 'material-ui-color';const palette = {
red: '#ff0000',
blue: '#0000ff',
green: '#00ff00',
yellow: 'yellow',
cyan: 'cyan',
lime: 'lime',
gray: 'gray',
orange: 'orange',
purple: 'purple',
black: 'black',
white: 'white',
pink: 'pink',
darkblue: 'darkblue',
};export const Container = () => (
);
```[ColorPalette documentation](https://mikbry.github.io/material-ui-color/?path=/story/components-colorpalette--basic)
### ``
Displays a button filled with a color
```javascript
import { ColorButton } from 'material-ui-color';export const Container = () => (
);
```[ColorButton documentation](https://mikbry.github.io/material-ui-color/?path=/story/components-colorbutton--basic)
## Roadmap
### v1.0.0 - [Current version](https://github.com/mikbry/material-ui-color/releases/tag/v1.0.0)
- remove `styled-components` to have less dependencies and reduce size
- display wrong color using a red checked box
- bugs fixes## Contribute
Contributions welcome! Read the [contribution guidelines](CONTRIBUTING.md) first.
## License
Released under MIT License