31 lines
876 B
JavaScript
31 lines
876 B
JavaScript
const helpers = {
|
|
withOpacityValue: function (variable) {
|
|
return ({ opacityValue }) => {
|
|
if (opacityValue === undefined) {
|
|
return `rgb(var(${variable}))`;
|
|
}
|
|
return `rgb(var(${variable}) / ${opacityValue})`;
|
|
};
|
|
},
|
|
toRGB: function (colors) {
|
|
const tempColors = Object.assign({}, colors);
|
|
const rgbColors = Object.entries(tempColors);
|
|
for (const [key, value] of rgbColors) {
|
|
if (typeof value === "string") {
|
|
if (value.replace("#", "").length == 6) {
|
|
const aRgbHex = value.replace("#", "").match(/.{1,2}/g);
|
|
tempColors[key] = `${parseInt(aRgbHex[0], 16)} ${parseInt(
|
|
aRgbHex[1],
|
|
16
|
|
)} ${parseInt(aRgbHex[2], 16)}`;
|
|
}
|
|
} else {
|
|
tempColors[key] = helpers.toRGB(value);
|
|
}
|
|
}
|
|
return tempColors;
|
|
},
|
|
};
|
|
|
|
module.exports = helpers;
|