Spaces:
Sleeping
Sleeping
File size: 876 Bytes
100a6dd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'board-light': '#f0d9b5',
'board-dark': '#b58863',
'highlight': 'rgba(20, 85, 30, 0.5)',
'move-hint': 'rgba(0, 128, 0, 0.6)',
'selected': 'rgba(255, 255, 0, 0.4)',
// Gradio-style dark theme colors
'gradio-bg': '#0b0f19',
'gradio-card': '#1f2937',
'gradio-border': '#374151',
'gradio-orange': '#f97316',
'gradio-yellow': '#facc15',
'gradio-green': '#22c55e',
'gradio-red': '#ef4444',
'gradio-blue': '#3b82f6',
'gradio-purple': '#a855f7',
'gradio-text': '#f3f4f6',
'gradio-text-secondary': '#9ca3af',
}
},
},
plugins: [],
} |