/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { kuma: { green: '#5CDD8B', dark: '#1a1a2e', darker: '#16162a', } } }, }, plugins: [], }