feat: updates

This commit is contained in:
2025-08-17 22:09:53 +02:00
parent 998e955ec8
commit 8c0dc905d9
18 changed files with 869 additions and 776 deletions

25
tailwind.config.mjs Normal file
View File

@@ -0,0 +1,25 @@
import typography from '@tailwindcss/typography'
import { catppuccin } from '@catppuccin/tailwindcss'
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: [
'./layouts/**/*.{html,htm}',
'./content/**/*.{md,html}',
'./static/theme.js'
],
theme: {
extend: {
fontFamily: {
sans: ['Rubik', 'ui-sans-serif', 'system-ui', '-apple-system', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans']
}
}
},
plugins: [
typography,
catppuccin({ prefix: 'ctp', defaultFlavor: 'mocha' })
]
}