Erstes Commit

This commit is contained in:
2026-05-27 20:04:58 +02:00
commit e16e9e36fd
218 changed files with 2307 additions and 0 deletions

16
tailwind.config.js Normal file
View File

@@ -0,0 +1,16 @@
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
//darkMode: 'selector',
content: ['./layouts/**/*.html'],
theme: {
extend: {
colors: {
'primary': colors.violet[700],
'primary-light': colors.violet[600],
}
},
},
plugins: [],
}