first commit

This commit is contained in:
Space-Banane
2026-02-09 19:26:40 +01:00
commit ead561d10b
42 changed files with 2364 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
apple: {
dark: '#000000',
card: '#1c1c1e',
secondary: '#2c2c2e',
accent: '#0a84ff',
text: '#f5f5f7',
muted: '#86868b'
}
},
borderRadius: {
'apple': '12px',
'apple-lg': '20px'
}
},
},
plugins: [],
}