-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
75 lines (75 loc) · 1.78 KB
/
tailwind.config.js
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
/* eslint-disable no-undef */
/** @type {import('tailwindcss').Config} */
export default {
darkMode: ['class'],
content: ['./src/**/*.{ts,tsx}'],
theme: {
container: {
center: true,
padding: '2rem',
screens: {
'2xl': '1400px',
},
},
extend: {
colors: {
'primary-100': '#d4f7e0',
'primary-200': '#adedc6',
'primary-300': '#78dda6',
'primary-400': '#41c682',
'primary-500': '#21bf73',
'primary-600': '#118a53',
'primary-700': '#0d6f44',
'primary-800': '#0d5838',
'primary-900': '#0c482f',
},
spacing: {
100: '25rem',
104: '26rem',
108: '27rem',
112: '28rem',
116: '29rem',
120: '30rem',
124: '31rem',
128: '32rem',
132: '33rem',
136: '34rem',
140: '35rem',
144: '36rem',
148: '37rem',
152: '38rem',
156: '39rem',
160: '40rem',
164: '41rem',
168: '42rem',
172: '43rem',
176: '44rem',
180: '45rem',
184: '46rem',
188: '47rem',
192: '48rem',
196: '49rem',
200: '50rem',
},
keyframes: {
'accordion-down': {
from: { height: 0 },
to: { height: 'var(--radix-accordion-content-height)' },
},
'accordion-up': {
from: { height: 'var(--radix-accordion-content-height)' },
to: { height: 0 },
},
},
animation: {
'accordion-down': 'accordion-down 0.2s ease-out',
'accordion-up': 'accordion-up 0.2s ease-out',
},
screens: {
'2xs': '320px',
xs: '375px',
},
},
},
plugins: [require('@tailwindcss/forms'), require('tailwindcss-animate')],
};