/** @type {import('tailwindcss').Config} */ export default { content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], theme: { extend: { colors: { info: "#4f46e5", success: "#267d46", warning: "#a46319", error: "#963030", }, }, }, plugins: [], }