Files
old-cto-as-you-go/CTOAsYouGo/node_modules/tailwindcss/lib/util/withAlphaVariable.js

56 lines
1.2 KiB
JavaScript
Raw Normal View History

2023-07-01 10:42:40 +02:00
"use strict";
2023-07-05 11:02:15 +02:00
2023-07-01 10:42:40 +02:00
Object.defineProperty(exports, "__esModule", {
2023-07-05 11:02:15 +02:00
value: true
2023-07-01 10:42:40 +02:00
});
2023-07-05 11:02:15 +02:00
exports.toRgba = toRgba;
exports.default = withAlphaVariable;
var _color = _interopRequireDefault(require("color"));
var _lodash = _interopRequireDefault(require("lodash"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function hasAlpha(color) {
return color.startsWith('rgba(') || color.startsWith('hsla(') || color.startsWith('#') && color.length === 9 || color.startsWith('#') && color.length === 5;
2023-07-01 10:42:40 +02:00
}
2023-07-05 11:02:15 +02:00
function toRgba(color) {
const [r, g, b, a] = (0, _color.default)(color).rgb().array();
return [r, g, b, a === undefined && hasAlpha(color) ? 1 : a];
2023-07-01 10:42:40 +02:00
}
2023-07-05 11:02:15 +02:00
function withAlphaVariable({
color,
property,
variable
}) {
if (_lodash.default.isFunction(color)) {
return {
[variable]: '1',
[property]: color({
opacityVariable: variable
})
};
}
try {
const [r, g, b, a] = toRgba(color);
if (a !== undefined) {
return {
[property]: color
};
2023-07-01 10:42:40 +02:00
}
2023-07-05 11:02:15 +02:00
2023-07-01 10:42:40 +02:00
return {
2023-07-05 11:02:15 +02:00
[variable]: '1',
[property]: [color, `rgba(${r}, ${g}, ${b}, var(${variable}))`]
2023-07-01 10:42:40 +02:00
};
2023-07-05 11:02:15 +02:00
} catch (error) {
return {
[property]: color
};
}
}