office-ui-fabric-react
Version:
Reusable React components for building experiences for Microsoft 365.
16 lines • 640 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var _rgbaOrHexString_1 = require("./_rgbaOrHexString");
var consts_1 = require("./consts");
/**
* Gets a color with the given transparency value and the same other components as `color`.
* Does not modify the original color.
*/
function updateT(color, t) {
var a = consts_1.MAX_COLOR_ALPHA - t;
return tslib_1.__assign(tslib_1.__assign({}, color), { t: t,
a: a, str: _rgbaOrHexString_1._rgbaOrHexString(color.r, color.g, color.b, a, color.hex) });
}
exports.updateT = updateT;
//# sourceMappingURL=updateT.js.map
;