forked from potsda.mn/mobilizon
22 lines
495 B
JavaScript
22 lines
495 B
JavaScript
|
function withOpacityValue(variable) {
|
||
|
return ({ opacityValue }) => {
|
||
|
if (opacityValue === undefined) {
|
||
|
return `rgb(var(${variable}))`;
|
||
|
}
|
||
|
return `rgb(var(${variable}) / ${opacityValue})`;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
content: ["./public/**/*.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {
|
||
|
primary: withOpacityValue("--color-primary"),
|
||
|
secondary: withOpacityValue("--color-secondary"),
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
};
|