-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
60 lines (60 loc) · 1.77 KB
/
Copy pathtailwind.config.js
File metadata and controls
60 lines (60 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
navy: {
DEFAULT: '#001F3F',
light: '#003366',
dark: '#00152A',
},
gold: {
DEFAULT: '#D4AF37',
light: '#F4D03F',
dark: '#B38728',
},
techBlue: '#0070F3',
charcoal: '#333333',
offWhite: '#F8F5F0',
// Brand colors for new design system
'color-bg-deep': '#1A1A1B',
'color-bg-secondary': '#242426',
'accent': '#CA8114',
'accent-light': '#E5A835',
'accent-dark': '#9B6310',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
heading: ['Montserrat', 'sans-serif'],
},
animation: {
'fade-in-up': 'fadeInUp 0.6s ease forwards',
'float': 'float 6s ease-in-out infinite',
},
keyframes: {
fadeInUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
},
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'hero-pattern': 'linear-gradient(135deg, rgba(0, 31, 63, 0.95) 0%, rgba(0, 31, 63, 0.8) 100%)',
},
boxShadow: {
'gold': '0 4px 15px rgba(212, 175, 55, 0.3)',
'gold-hover': '0 6px 20px rgba(212, 175, 55, 0.4)',
},
},
},
plugins: [],
}