55 lines
1.3 KiB
JavaScript
55 lines
1.3 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./components/**/*.{js,vue,ts}',
|
|
'./layouts/**/*.vue',
|
|
'./pages/**/*.vue',
|
|
'./plugins/**/*.{js,ts}',
|
|
'./app.vue',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
/* Palette NAV V2 — Sobre institutionnel */
|
|
nav: {
|
|
bg: '#f8f6f1',
|
|
'bg-alt':'#eee9df',
|
|
surface: '#ffffff',
|
|
primary: 'rgba(26, 34, 56, 0.6)',
|
|
'primary-solid': '#1a2238',
|
|
accent: '#f5b342',
|
|
text: '#1a2238',
|
|
'text-muted': 'rgba(26, 34, 56, 0.55)',
|
|
'text-on-primary': '#f8f6f1',
|
|
},
|
|
/* Héritage V1 — gardé pour composants existants */
|
|
sage: {
|
|
50: '#f4f7f4',
|
|
100: '#e6ede6',
|
|
200: '#cddccd',
|
|
300: '#a9c2a9',
|
|
400: '#7ea07e',
|
|
500: '#5c7f5c',
|
|
600: '#476447',
|
|
700: '#3a503a',
|
|
800: '#304030',
|
|
900: '#293529',
|
|
},
|
|
warm: {
|
|
50: '#faf8f5',
|
|
100: '#f5f0e8',
|
|
200: '#ece0cf',
|
|
300: '#dfc9ad',
|
|
400: '#ceaa84',
|
|
500: '#c09060',
|
|
600: '#b07a4a',
|
|
700: '#93633c',
|
|
800: '#785134',
|
|
900: '#62432c',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|