-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
119 lines (118 loc) · 2.95 KB
/
tailwind.config.ts
File metadata and controls
119 lines (118 loc) · 2.95 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import type { Config } from 'tailwindcss'
export default {
content: [
"./app/**/{**,.client,.server}/**/*.{js,jsx,ts,tsx}",
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
'inter': ['Inter', 'sans-serif'],
sans: [
"Inter",
"ui-sans-serif",
"system-ui",
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji",
],
},
colors: {
primary: {
50: '#ecfdf5',
100: '#d1fae5',
200: '#a7f3d0',
300: '#6ee7b7',
400: '#34d399',
500: '#10b981',
600: '#059669',
700: '#047857',
800: '#065f46',
900: '#064e3b',
},
secondary: {
50: '#f0fdfa',
100: '#ccfbf1',
200: '#99f6e4',
300: '#5eead4',
400: '#2dd4bf',
500: '#14b8a6',
600: '#0d9488',
700: '#0f766e',
800: '#115e59',
900: '#134e4a',
}
},
animation: {
'fadeInUp': 'fadeInUp 0.6s ease-out forwards',
'slideInFromLeft': 'slideInFromLeft 0.6s ease-out forwards',
'slideInFromRight': 'slideInFromRight 0.6s ease-out forwards',
'blob': 'blob 7s infinite',
},
keyframes: {
fadeInUp: {
'from': {
opacity: '0',
transform: 'translateY(30px)',
},
'to': {
opacity: '1',
transform: 'translateY(0)',
},
},
slideInFromLeft: {
'from': {
opacity: '0',
transform: 'translateX(-50px)',
},
'to': {
opacity: '1',
transform: 'translateX(0)',
},
},
slideInFromRight: {
'from': {
opacity: '0',
transform: 'translateX(50px)',
},
'to': {
opacity: '1',
transform: 'translateX(0)',
},
},
blob: {
'0%': {
transform: 'translate(0px, 0px) scale(1)',
},
'33%': {
transform: 'translate(30px, -50px) scale(1.1)',
},
'66%': {
transform: 'translate(-20px, 20px) scale(0.9)',
},
'100%': {
transform: 'translate(0px, 0px) scale(1)',
},
},
},
backdropBlur: {
xs: '2px',
},
boxShadow: {
'glow': '0 0 20px rgba(16, 185, 129, 0.6)',
'glow-lg': '0 0 40px rgba(16, 185, 129, 0.4)',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
],
} satisfies Config