18 lines
451 B
JavaScript
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: [],
|
|
}
|
|
|