21 lines
350 B
JavaScript
21 lines
350 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: '#3498db',
|
|
hover: '#2980b9',
|
|
},
|
|
},
|
|
spacing: {
|
|
'128': '32rem',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|