UNPKG

@kcuf/mere-color

Version:

Mere color utils for generating, manipulation, a11y purposes.

12 lines (11 loc) 271 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = rgbComputeBrightness; /** * https://www.w3.org/TR/AERT/#color-contrast */ function rgbComputeBrightness(rgb) { return (rgb.r * 299 + rgb.g * 587 + rgb.b * 114) / 1000; }