Initial commit

This commit is contained in:
Emre
2025-10-10 13:10:51 +03:00
commit bfd28b7fff
61 changed files with 6234 additions and 0 deletions

32
tailwind.config.js Normal file
View File

@@ -0,0 +1,32 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{ts,tsx,js,jsx}'],
theme: {
extend: {
fontFamily: {
sans: ['"Plus Jakarta Sans"', 'Inter', 'system-ui', 'sans-serif'],
display: ['"Plus Jakarta Sans"', 'Inter', 'system-ui', 'sans-serif'],
},
colors: {
brand: {
50: '#f5f7ff',
100: '#e9edff',
200: '#cdd7ff',
300: '#a5b6ff',
400: '#7a8df9',
500: '#5a6bf0',
600: '#4350d7',
700: '#4149b3',
800: '#343b8a',
900: '#2d336c',
},
ink: '#111827',
mist: '#f6f8fb',
},
boxShadow: {
subtle: '0 20px 45px -25px rgba(18, 28, 132, 0.35)',
},
},
},
plugins: [],
};