Initial Commit

This commit is contained in:
openhands
2025-10-05 19:30:16 +00:00
commit 0eec6fa2e4
20 changed files with 4922 additions and 0 deletions

27
tailwind.config.js Normal file
View File

@@ -0,0 +1,27 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {},
},
plugins: [require('daisyui'), require('@tailwindcss/typography')],
daisyui: {
themes: [
{
gamestore: {
"primary": "#3b82f6",
"secondary": "#8b5cf6",
"accent": "#06b6d4",
"neutral": "#1f2937",
"base-100": "#ffffff",
"info": "#0ea5e9",
"success": "#10b981",
"warning": "#f59e0b",
"error": "#ef4444",
},
},
"dark",
"light",
],
},
}