| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /** @type {import('tailwindcss').Config} */
- module.exports = {
- content: ["./src/Resources/**/*.blade.php", "./src/Resources/**/*.js"],
- theme: {
- container: {
- center: true,
- screens: {
- "2xl": "1440px",
- },
- padding: {
- DEFAULT: "90px",
- },
- },
- screens: {
- sm: "525px",
- md: "768px",
- lg: "1024px",
- xl: "1240px",
- "2xl": "1440px",
- 1180: "1180px",
- 1060: "1060px",
- 991: "991px",
- 868: "868px",
- },
- extend: {
- colors: {
- navyBlue: "#060C3B",
- lightOrange: "#F6F2EB",
- darkGreen: '#40994A',
- darkBlue: '#0044F2',
- darkPink: '#F85156',
- },
- fontFamily: {
- poppins: ["Poppins", "sans-serif"],
- dmserif: ["DM Serif Display", "serif"],
- },
- }
- },
- plugins: [],
- safelist: [
- {
- pattern: /icon-/,
- }
- ]
- };
|