zkt25/z2/Frontend/tailwind.config.js
Andrii Pervashov aa03f35ae0 z2 upload
2025-04-10 08:22:24 +02:00

26 lines
566 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
screens: {
sm: "480px",
md: "768px",
lg: "1020px",
xl: "1440px",
},
extend: {
colors: {
lightBlue: "hsl(215.02, 98.39%, 51.18%)",
darkBlue: "hsl(213.86, 58.82%, 46.67%)",
lightGreen: "hsl(156.62, 73.33%, 58.82%)",
},
fontFamily: {
sans: ["Poppins", "sans-serif"],
},
spacing: {
180: "32rem",
},
},
},
plugins: [],
}