UNPKG

@kcuf/mere-color

Version:

Mere color utils for generating, manipulation, a11y purposes.

17 lines (16 loc) 274 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = rgbInvert; /** * Inverts the r/g/b channel of a color. */ function rgbInvert(rgb) { return { r: 255 - rgb.r, g: 255 - rgb.g, b: 255 - rgb.b, a: rgb.a }; }