-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
75 lines (75 loc) · 1.81 KB
/
Copy pathtailwind.config.js
File metadata and controls
75 lines (75 loc) · 1.81 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 {
darkMode: 'class',
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
bp: {
normal: {
DEFAULT: '#10b981',
light: '#d1fae5',
dark: '#065f46',
text: '#047857'
},
elevated: {
DEFAULT: '#f59e0b',
light: '#fef3c7',
dark: '#92400e',
text: '#d97706'
},
stage1: {
DEFAULT: '#f97316',
light: '#ffedd5',
dark: '#9a3412',
text: '#c2410c'
},
stage2: {
DEFAULT: '#ef4444',
light: '#fee2e2',
dark: '#991b1b',
text: '#b91c1c'
},
crisis: {
DEFAULT: '#be123c',
light: '#ffe4e6',
dark: '#881337',
text: '#9f1239'
}
},
brand: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0284c7',
600: '#0369a1',
700: '#075985',
800: '#0c4a6e',
900: '#0a3651',
},
health: {
teal: '#0d9488',
emerald: '#10b981',
cyan: '#06b6d4',
sky: '#0284c7'
}
},
fontFamily: {
sans: ['"Plus Jakarta Sans"', 'Inter', 'system-ui', 'sans-serif'],
},
animation: {
'pulse-subtle': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 4s ease-in-out infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-6px)' },
}
}
},
},
plugins: [],
};