dead-simple-color-utils
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

Color Utilities

NPM version Downloads

Basic functions to work with colors in javascript

Intro

The purpose of this library is to have a compilation of the functions I use to process my colors. It is extremely limited since it contains, as I said, only functions I've needed accross my projects.

Some possible use cases are calculating the best text color according to the background color (chooses between only black and white but could easily be modified to achieve a comparison with several colors if it were necessary) and lightening or darkening a color on demand.

Why would you want these functions? Well, say you had a color picker and wanted to put a marker on top of the selected color... There you have your use for the calculate ideal text color function. Now imagine you wanted to have a different color for your status bar than the one in your app bar (like in Android). You could achieve that easily by processing one of the colors lightening or darkening it.

Quick Start

import { shadeBlendConvert, calculateBestTextColor } from "color-utils";
 
// Darkens a color by 10%
shadeBlendConvert("#83fc8f", -10);
 
// Lightens a color by 19%
shadeBlendConvert("#fc83d3", 19);
 
// Calculates the best text color for the passed background
calculateBestTextColor("#f62459");

Package Sidebar

Install

npm i dead-simple-color-utils

Weekly Downloads

2

Version

1.0.1

License

MIT

Unpacked Size

6.85 kB

Total Files

6

Last publish

Collaborators

  • mrnkr