Chess_Engine / web /tailwind.config.js
electro-sb's picture
first commit
100a6dd
/** @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: [],
}