-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
64 lines (64 loc) · 1.25 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
module.exports = {
darkMode: 'class',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
screens: {
md: '720px',
},
colors: {
primary: {
100: '#ffffffb3',
200: '#00000012',
250: '#F7F8F8',
275: '#7E7E7E',
300: '#F2F2F2',
400: '#DADFE7',
500: '#313035',
600: '#060606',
},
lightGreen: {
50: '#e7fff8',
100: '#c6ffed',
200: '#92ffe2',
300: '#4dffd8',
400: '#1bffcd',
500: '#00e8b3',
600: '#00be94',
700: '#00987b',
800: '#007862',
900: '#006252',
},
mirage: {
50: '#f9fafb',
100: '#f4f4f5',
200: '#e6e7ea',
300: '#d3d5d9',
400: '#a0a3ab',
500: '#6f727c',
600: '#4f555f',
700: '#3c414c',
800: '#232933',
900: '#171b26',
},
},
boxShadow: {
primary: '0 30px 60px rgba(0,0,0,0.12)',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
keyframes: {
wiggle: {
'0%, 100%': { transform: 'rotate(-3deg)' },
'50%': { transform: 'rotate(3deg)' },
},
},
animation: { wiggle: 'wiggle 200ms ease-in-out' },
},
},
plugins: [require('@tailwindcss/typography'),require('@tailwindcss/aspect-ratio'),],
};