© 2026 Hedgehog Software, LLC
import sfTypography from '@storefront-ui/typography'; import { tailwindConfig } from '@storefront-ui/vue/tailwind-config'; import type { Config } from 'tailwindcss'; export default { presets: [tailwindConfig], plugins: [sfTypography], content: ['./**/*.vue', './node_modules/@storefront-ui/vue/**/*.{js,mjs}'], theme: { fontFamily: { sans: 'PP Supply Sans', mono: 'PP Supply Mono', }, extend: { screens: { '4xl': '1920px', '3xl': '1536px', '2xl': '1366px', xl: '1280px', lg: '1024px', md: '768px', sm: '640px', xs: '376px', '2xs': '360px', }, }, }, } as Config;