import type { Config } from 'tailwindcss' export default >{ theme: { extend: { aspectRatio: { auto: 'auto', square: '1 / 1', video: '16 / 9' } }, screens: { 'mobile': '360px', 'tablet': '520px', 'sm': '640px', 'md': '768px', 'lg': '1024px', 'xl': '1280px', '2xl': '1440px', } } }