1.0.1 • Published 1 year ago

is-readable-color v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Is Readable Color

A npm module that determines if a text color is readable in contrast with a background color

Usage

To use this function, you can call it like this:

import isReadableColor from "is-readable-color";
const textColor = '#000000'; // Black
const bgColor = '#ffffff'; // White

if (isReadableColor(textColor, bgColor)) {
  console.log('The text color is readable.');
} else {
  console.log('The text color is not readable.');
}

Also a text size optional parameter is accepted, default is 18

isReadableColor(textColor, bgColor, 12)