Fixed design and texts

This commit is contained in:
Lucas
2026-01-04 01:33:29 +10:00
parent c9b78fe66b
commit 6d0acc8e04
52 changed files with 2087 additions and 1700 deletions

16
tailwind.config.js Normal file
View File

@@ -0,0 +1,16 @@
export default {
content: [
'./index.html',
'./src/**/*.{vue,js,jsx}'
],
darkMode: ['class'],
theme: {
extend: {
colors: {
background: 'rgb(var(--background) / <alpha-value>)',
foreground: 'rgb(var(--foreground) / <alpha-value>)',
}
}
},
plugins: []
}