This commit is contained in:
2026-06-30 17:09:52 +02:00
commit 0806be135d
54 changed files with 10482 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
bg: '#0f1117',
panel: '#171a23',
panel2: '#1e222e',
border: '#2a2f3d',
accent: '#7c5cff',
accent2: '#00d2b8'
}
}
},
plugins: []
}