This repository was archived by the owner on Jan 25, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
66 lines (66 loc) · 1.86 KB
/
tailwind.config.js
File metadata and controls
66 lines (66 loc) · 1.86 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./lib/components/**/*.{js,ts,jsx,tsx,mdx}'
],
theme: {
extend: {
fontFamily: {
sans: [
'ui-sans-serif',
'system-ui',
'Inter',
'Helvetica Neue',
'Arial',
'Noto Sans',
'sans-serif'
]
},
colors: {
brand: {
50: '#e9fbf7',
100: '#c9f6eb',
200: '#9feddc',
300: '#63e0c9',
400: '#2cd2b5',
500: '#00c49f',
600: '#00a184',
700: '#007f69',
800: '#066555',
900: '#0a5246'
},
core: {
50: 'var(--core-50)',
100: 'var(--core-100)',
200: 'var(--core-200)',
300: 'var(--core-300)',
400: 'var(--core-400)',
500: 'var(--core-500)',
600: 'var(--core-600)',
700: 'var(--core-700)',
800: 'var(--core-800)',
900: 'var(--core-900)',
950: 'var(--core-950)'
}
},
backgroundImage: {
'grid-radial': 'radial-gradient(circle at 50% 50%, rgba(0,196,159,0.25), transparent 60%)',
'hero-glow': 'radial-gradient(circle at 20% 30%, rgba(0,196,159,0.35), transparent 70%), radial-gradient(circle at 80% 70%, rgba(0,196,159,0.25), transparent 75%)'
},
keyframes: {
'fade-swap': {
'0%': { opacity: '0', transform: 'translateY(6px) scale(.97)' },
'60%': { opacity: '1', transform: 'translateY(0) scale(1)' },
'100%': { opacity: '1', transform: 'translateY(0) scale(1)' }
}
},
animation: {
'fade-swap': 'fade-swap .45s cubic-bezier(.16,.8,.3,1) both'
}
}
},
plugins: []
};