init du repo

This commit is contained in:
Tom Boullay
2026-04-03 10:22:24 +02:00
parent 929b1075d4
commit a730946ad2
14 changed files with 3224 additions and 0 deletions
+49
View File
@@ -0,0 +1,49 @@
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
brand: {
50: '#FAF5FF',
100: '#EDE9FE',
200: '#DDD6FE',
300: '#C4B5FD',
400: '#A78BFA',
500: '#7C5CFC', // violet principal (image)
600: '#6D28D9',
700: '#5B21B6',
900: '#2E1065',
},
// Rose/magenta (dégradé image)
rose: {
300: '#FDA4C4',
400: '#F472B6',
500: '#EC4899',
},
surface: {
DEFAULT: '#FFFFFF',
soft: '#F9F5FF', // fond global lavande très clair
muted: '#F3EEFF', // fond carte/panel
border: '#E5D9FD', // bordure douce
},
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'Fira Code', 'monospace'],
},
boxShadow: {
soft: '0 2px 16px 0 rgba(124, 92, 252, 0.08)',
card: '0 4px 24px 0 rgba(124, 92, 252, 0.10)',
},
},
},
plugins: [],
}
export default config