/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { primary: "#78b856", sidebar: "#333333", panel: "#252526", content: "#1e1e1e", } }, }, plugins: [], };