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

https://github.com/brunoimbrizi/tweakpane-plugin-chromatic

Color palette viewer for Tweakpane
https://github.com/brunoimbrizi/tweakpane-plugin-chromatic

chromatic palette tweakpane tweakpane-plugin

Last synced: over 1 year ago
JSON representation

Color palette viewer for Tweakpane

Awesome Lists containing this project

README

          

# Tweakpane plugin chromatic
Color palette viewer for [Tweakpane][tweakpane].

![tweakpane-plugin-chromatic](https://github.com/brunoimbrizi/tweakpane-plugin-chromatic/assets/880280/d5ecf5bc-bb27-4dd2-b223-c620d744df0a)

## Demo

[Plugin demo on StackBlitz](https://stackblitz.com/edit/js-rkko7x)

## Installation

### Browser
```html

const pane = new Tweakpane.Pane();
pane.registerPlugin(TweakpaneChromaticPlugin);

```

### Package
```js

import {Pane} from 'tweakpane';
import * as ChromaticPlugin from 'tweakpane-plugin-chromatic';

const pane = new Pane();
pane.registerPlugin(ChromaticPlugin);
```

## Usage
```js
pane.addBlade({
view: 'chromatic',
label: 'palette',
colors: ['red', 'blue', 'green']
});
```

[tweakpane]: https://github.com/cocopon/tweakpane/