/** @type {import('tailwindcss').Config} */ const colors = require('tailwindcss/colors') module.exports = { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx,vue}", ], plugins: [ ], theme: { screens: { sm: '480px', md: '768px', lg: '976px', xl: '1440px', }, fontFamily: { sans: ['Inter', 'sans-serif'], serif: ['Merriweather', 'serif'], }, extend: { spacing: { '128': '32rem', '144': '36rem', }, borderRadius: { '4xl': '2rem', } } } }