const { default: tailwindcssBrandColors } = require("tailwindcss-brand-colors"); /** @type {import('tailwindcss').Config} */ module.exports = { content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], theme: { extend: {}, fontFamily: { sans: ["Sen", "sans-serif"], body: ["Comfortaa", "sans-serif"], }, }, plugins: [ { "postcss-import": {}, tailwindcss: {}, autoprefixer: {}, }, tailwindcssBrandColors, ], };