UNPKG

chrome-ext-react

Version:
23 lines (20 loc) 497 B
import defaultTheme from "tailwindcss/defaultTheme"; import forms from "@tailwindcss/forms"; /** @type {import('tailwindcss').Config} */ export default { darkMode: "class", content: ["./src/**/*.{js,ts,jsx,tsx}"], theme: { extend: { display: ["dark", "light"], fontFamily: { sans: ["Sora", ...defaultTheme.fontFamily.sans], }, colors: { "custom-black": "#1a1a1a", // Add more colors as needed }, }, }, plugins: [forms], };