Files
portfolio/tailwind.config.js
2025-10-24 14:24:49 +02:00

18 lines
451 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: `rgb(var(--color-primary)/ <alpha-value>)`,
secondary: `rgb(var(--color-secondary)/ <alpha-value>)`,
accent: `rgb(var(--color-accent)/ <alpha-value>)`,
},
},
},
plugins: [],
}