fix: apply designer agent improvements to tailwind.config.js

This commit is contained in:
cupadev-admin 2026-03-09 07:11:10 +00:00
parent 62f66edb57
commit 52efef8786
1 changed files with 33 additions and 36 deletions

View File

@ -7,51 +7,48 @@ export default {
theme: {
extend: {
colors: {
marine: {
'marine': {
50: '#f0f4f8',
100: '#d9e2ec',
200: '#bcccdc',
300: '#9fb3c8',
400: '#829ab1',
500: '#627d98',
600: '#486581',
700: '#334e68',
800: '#243b53',
900: '#102a43',
100: '#d9e4ed',
200: '#b3c9da',
300: '#7fa4bb',
400: '#4d7d9c',
500: '#2d5f80',
600: '#1f4a66',
700: '#163a52',
800: '#0f2a3d',
900: '#091e2d',
950: '#040f18',
},
gold: {
'gold': {
50: '#fffbeb',
100: '#fef3c7',
200: '#fde68a',
300: '#fcd34d',
400: '#fbbf24',
500: '#f59e0b',
600: '#d97706',
700: '#b45309',
500: '#c9a84c',
600: '#a07830',
700: '#7c5a1e',
800: '#5a3f0f',
900: '#3b2708',
},
crimson: {
500: '#dc2626',
600: '#b91c1c',
700: '#991b1b',
}
'military': {
dark: '#1C2B1A',
green: '#4A5C3F',
light: '#6B7F5E',
},
'french': {
blue: '#002395',
red: '#ED2939',
},
'cream': '#F9F6F0',
},
fontFamily: {
serif: ['Georgia', 'Cambria', 'Times New Roman', 'serif'],
sans: ['Inter', 'system-ui', 'sans-serif'],
serif: ["'Playfair Display'", 'Georgia', 'serif'],
sans: ["'Inter'", 'system-ui', 'sans-serif'],
},
backgroundImage: {
'hero-pattern': "linear-gradient(rgba(16, 42, 67, 0.82), rgba(16, 42, 67, 0.75))",
},
animation: {
'fade-in': 'fadeIn 1s ease-in-out',
'slide-up': 'slideUp 0.8s ease-out',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideUp: {
'0%': { transform: 'translateY(30px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
'tricolore': "linear-gradient(to right, #002395 33.33%, #ffffff 33.33%, #ffffff 66.66%, #ED2939 66.66%)",
},
},
},