first commit

This commit is contained in:
Tomáš Dvořák
2025-10-02 12:39:28 +02:00
commit 0fc92f8464
60 changed files with 11834 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
'dark-bg': '#0a0e1a',
'dark-card': '#131823',
'dark-border': '#1f2937',
'accent-blue': '#3b82f6',
'accent-green': '#10b981',
},
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif'],
}
},
},
plugins: [],
}