update: add gitgnore

This commit is contained in:
Tom Boullay
2026-04-03 10:41:56 +02:00
parent a730946ad2
commit 5007a255da
9 changed files with 427 additions and 224 deletions
+25 -24
View File
@@ -9,28 +9,29 @@ const config: Config = {
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',
black: {
50: '#F7F7F7',
100: '#E5E5E5',
200: '#CCCCCC',
300: '#999999',
400: '#666666',
500: '#333333',
600: '#1A1A1A',
700: '#0D0D0D',
800: '#050505',
900: '#000000',
},
// 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
gray: {
50: '#FAFAFA',
100: '#F5F5F5',
200: '#E5E5E5',
300: '#D4D4D4',
400: '#A3A3A3',
500: '#737373',
600: '#525252',
700: '#404040',
800: '#262626',
900: '#171717',
},
},
fontFamily: {
@@ -38,12 +39,12 @@ const config: Config = {
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)',
soft: '0 2px 16px 0 rgba(0, 0, 0, 0.06)',
card: '0 4px 24px 0 rgba(0, 0, 0, 0.08)',
},
},
},
plugins: [],
}
export default config
export default config