28 lines
497 B
JavaScript
28 lines
497 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: '#e93323',
|
|
hover: '#d82819',
|
|
light: '#fdebe9',
|
|
dark: '#b71d10'
|
|
},
|
|
secondary: {
|
|
DEFAULT: '#ff7700',
|
|
light: '#fff1e5'
|
|
}
|
|
},
|
|
maxWidth: {
|
|
'site': '1240px'
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|