initial commit

This commit is contained in:
DanielS
2026-06-30 22:51:26 +02:00
commit 3486145b9f
22 changed files with 9108 additions and 0 deletions

19
tailwind.config.mjs Normal file
View File

@@ -0,0 +1,19 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
darkMode: 'class',
theme: {
extend: {
colors: {
brand: {
primary: '#0a0a0a',
cyan: '#00e5ff',
magenta: '#ff00ff',
darkBg: '#111111',
lightBg: '#f9fafb',
}
}
},
},
plugins: [],
}