initial commit

This commit is contained in:
Dinawo
2024-06-11 23:18:25 +02:00
parent 6d8d5fcd6c
commit 8484a534db
3361 changed files with 493837 additions and 0 deletions

34
tailwind.config.js Normal file
View File

@@ -0,0 +1,34 @@
module.exports = {
content: [
"./src/**/*.html",
"./src/**/*.js",
"./src/**/*.jsx",
"./src/**/*.ts",
"./src/**/*.tsx",
],
theme: {
extend: {
colors: {
glass: {
DEFAULT: 'rgba(255, 255, 255, 0.1)',
bg: '#000000',
border: '#71717a',
shadow: '#a1a1aa',
},
primary: '#22c55e',
secondary: '#5865f2',
danger: '#ef4444',
background: '#09090b',
text: '#f4f4f5',
},
boxShadow: {
glass: '0 4px 6px rgba(161, 161, 170, 0.1)',
},
},
fontFamily: {
sans: ['Arial', 'sans-serif'],
},
},
variants: {},
plugins: [],
};