game/app/tailwind.config.js
2026-01-01 02:21:09 +08:00

20 lines
371 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'slate-900': '#0f172a',
'slate-800': '#1e293b',
'emerald-500': '#10b981',
'rose-500': '#f43f5e',
'blue-500': '#3b82f6',
}
},
},
plugins: [],
}