/** @type {import('tailwindcss').Config} */ export default { darkMode: "class", content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], theme: { container: { center: true, }, extend: { colors: { gray: require('tailwindcss/colors').neutral, } }, }, plugins: [ require('@tailwindcss/typography'), ], };