19 lines
292 B
JavaScript
19 lines
292 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
from: '#667eea',
|
|
to: '#764ba2',
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|