-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
75 lines (75 loc) · 2.24 KB
/
Copy pathtailwind.config.js
File metadata and controls
75 lines (75 loc) · 2.24 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
// Brand emerald, original ink-green kept for continuity
'ink-green': '#1A5F4A',
brand: {
DEFAULT: '#1A5F4A',
light: '#2dd4a7',
glow: '#34d399',
dark: '#0f3d2f',
},
// Immersive near-black canvas with a faint green cast
ink: {
950: '#070b09',
900: '#0a0f0d',
800: '#0f1714',
700: '#16211c',
600: '#1d2c26',
},
gold: '#d8b46a',
mist: '#e8efe9',
},
fontFamily: {
display: ['"Playfair Display"', 'Georgia', 'serif'],
sans: ['Inter', '"Noto Sans SC"', 'system-ui', 'sans-serif'],
},
boxShadow: {
glow: '0 0 0 1px rgba(45,212,167,0.25), 0 18px 50px -12px rgba(45,212,167,0.35)',
card: '0 20px 45px -20px rgba(0,0,0,0.7)',
lift: '0 30px 70px -25px rgba(0,0,0,0.85)',
},
keyframes: {
'fade-up': {
'0%': { opacity: '0', transform: 'translateY(24px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
'fade-in': {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
'scale-in': {
'0%': { opacity: '0', transform: 'scale(0.94)' },
'100%': { opacity: '1', transform: 'scale(1)' },
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
},
shimmer: {
'0%': { backgroundPosition: '-200% 0' },
'100%': { backgroundPosition: '200% 0' },
},
'pulse-soft': {
'0%, 100%': { opacity: '0.5' },
'50%': { opacity: '1' },
},
},
animation: {
'fade-up': 'fade-up 0.7s cubic-bezier(0.22,1,0.36,1) both',
'fade-in': 'fade-in 0.8s ease both',
'scale-in': 'scale-in 0.45s cubic-bezier(0.22,1,0.36,1) both',
float: 'float 6s ease-in-out infinite',
shimmer: 'shimmer 2.5s linear infinite',
'pulse-soft': 'pulse-soft 3s ease-in-out infinite',
},
},
},
plugins: [],
}