0.0.2 • Published 3 years ago

@openpalette/color v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

@openpalette/core

A library for working with OpenPalette colors.

npm install --save @openpalette/color

OR

yarn add @openpalette/color

API

  • hexToRgba
  • hexToHsva
  • rgbaToHsva
  • rgbaToHex
  • hsvaToRgba
  • hsvaToHex
  • getLuminance

Usage

You can use this library to find the correct text color to show on an OpenPalette hex color background.

const paletteColor = '#abcdef';
const luminance = getLuminance(hexToRgba(paletteColor));
const textColor = luminance > 0.5 ? 'black' : 'white';