const defaultTheme = require("tailwindcss/defaultTheme"); module.exports = { mode: "jit", purge: [ "./pages/**/*.{js,ts,jsx,tsx,md,mdx}", "./components/**/*.{js,ts,jsx,tsx}", ], darkMode: 'class', // or 'media' or 'class' theme: { extend: { fontFamily: { sans: ["Inter", ...defaultTheme.fontFamily.sans], serif: ["Restora", ...defaultTheme.fontFamily.serif], }, colors: { // life itself yellow 'yellow-li': '#f0ca5e' } }, }, variants: { extend: {}, }, plugins: [require("@tailwindcss/typography")], };