47 lines
860 B
JavaScript
47 lines
860 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/Resources/**/*.blade.php", "./src/Resources/**/*.js"],
|
|
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
|
|
screens: {
|
|
"2xl": "1920px",
|
|
},
|
|
|
|
padding: {
|
|
DEFAULT: "16px",
|
|
},
|
|
},
|
|
|
|
screens: {
|
|
sm: "525px",
|
|
md: "768px",
|
|
lg: "1024px",
|
|
xl: "1240px",
|
|
"2xl": "1920px",
|
|
},
|
|
|
|
extend: {
|
|
colors: {
|
|
brandColor: '#0E90D9',
|
|
},
|
|
|
|
fontFamily: {
|
|
inter: ['Inter'],
|
|
icon: ['icomoon']
|
|
}
|
|
},
|
|
},
|
|
|
|
darkMode: 'class',
|
|
|
|
plugins: [],
|
|
|
|
safelist: [
|
|
{
|
|
pattern: /icon-/,
|
|
}
|
|
]
|
|
}; |