import { manipulateRgb, rgbInvert } from'../util';
/**
* Inverts the r/g/b channel of a color, returning the new color in the original notation normalized.
*/exportdefaultfunctioninvert(color) {
returnmanipulateRgb(color, rgbInvert);
}
//# sourceMappingURL=invert.js.map