/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./app/**/*.{js,ts,jsx,tsx,mdx}", "./components/**/*.{js,ts,jsx,tsx,mdx}", "./lib/**/*.{js,ts,jsx,tsx,mdx}", ], theme: { extend: { colors: { accent: { DEFAULT: "#39FF14", hover: "#32E012", subtle: "rgba(57,255,20,0.1)", }, }, }, }, plugins: [], };