Generate a random color from a given string
Add color to graph series names, months of the year, days of the week, super useful to add a unique subtle differentiator.
Load from npm
# NPM
npm i @eknowles/color-this
# Yarn
yarn add @eknowles/color-this
Now import and use in React, Node or wherever!
import React from 'react';
import ct from '@eknowles/color-this';
export const MyLabelComponent = ({text}) => (
<div style={{background: ct(text)}}>{text}</div>
);
AngularJS - http://eknowles.github.io/angular-color-this/