npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-colorscales

v0.7.3

Published

A React component for picking colorscales based on Chroma.js

Downloads

3,615

Readme

React colorscales 🌈

A React UI component for picking and modifying colorscales, based on Chroma-js.

Part of Plotly's React Component Suite for building data visualization Web apps and products.

Demo

👉 DEMO

👉 Demo source code

👉 Wrapper for Dash apps (Python)

Install

npm install react-colorscales

yarn add react-colorscales

🚗 Quick Start

import {Colorscale} from 'react-colorscales';
import ColorscalePicker from 'react-colorscales';

const viridisColorscale = ['#fafa6e', '#9cdf7c', '#4abd8c', '#00968e', '#106e7c', '#2a4858'];

// Show a single colorscale

<Colorscale
    colorscale={viridisColorscale}
    onClick={() => {}}
    width={150}
/>

// Show the colorscale picker

<ColorscalePicker 
    onChange={this.onChange}
    colorscale={viridisColorscale}
/>

API

Colorscale component

<Colorscale /> generates a single color scale palette:

| prop | Description | | -------------- | ------------------------------------------------------------------------------------------ | | onClick | Function to be called when colorscale is clicked. | | colorscale | Colorscale as an array of color strings (HEX or RGB). See Quick Start above. | | width | Optional: Width of an individual color swatch. Defaults to 20px. | | maxWidth | Optional: Maximum width of colorscale palette. If set, maxWidth overrides swatch width. | | label | Optional: Label positioned on the left side of color scale palette |

ColorscalePicker component

<ColorscalePicker /> generates a UI panel for selecting a color scale palette:

| prop | Description | | ----------------------- | ------------------------------------------------------------------------------------------ | | onChange | Passes back a new color scale when a scale is chosen or modified. | | colorscale | Default colorscale as an array of color strings (HEX or RGB). See Quick Start above. | | nSwatches | Optional: Number of discrete colors or "swatches" in the default color scale. | | fixSwatches | Optional: If set to true, hides the swatches slider and fixes swatches to nSwatches. | | colorscaleType | Optional: If set, sets ColorPicker Dropdown to specific colorscale, one ofCOLORSCALE_TYPES| | width | Optional: Can set width of component | |className | Optional: Can add className to base level component | |disableSwatchControls| Optional: Does not show swatch related controls in ColorPicker | |scaleLength`| Optional: Can specify the lengh of the Colorscales used in the ColorPicker |

See the demo app source code for an example of importing and using these components.

Features

  • Preloaded with ColorBrewer, cmocean, and cube helix color scales
  • Log color scales
  • Set custom scale breakpoints
  • Set the number of discrete colors ("swatches") in a color scale

Screenshots

react-colorscales-screenshot

Credit

  • Cynthia Brewer's ColorBrewer colorscales
  • Kristen Thyng's cmocean color scales
  • Dave Green's cube helix color scales
  • Gregor Aisch's chroma-js for easy access to the aforementioned color scales in JavaScript.