-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
125 lines (125 loc) · 3.05 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
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
120
121
122
123
124
125
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line import/no-anonymous-default-export, import/no-default-export
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
plugins: [],
theme: {
extend: {
colors: {
background: '#202027',
'blue-dark': '#2E303C',
'blue-darker': '#252632',
'blue-darkest': '#1E1F28',
cyan: {
DEFAULT: '#8FD5EA',
50: '#F0F9FC',
100: '#E1F3F8',
200: '#C3E7F1',
300: '#A6DBE9',
400: '#8FD5EA',
500: '#5FC1E0',
600: '#2FACD6',
700: '#2589AB',
800: '#1B677F',
900: '#124454',
},
divider: '#56596C',
green: {
DEFAULT: '#97FB9B',
dark: '#064e3b',
},
grey: {
light: '#A6A6A6',
lighter: '#D9D9D9',
},
purple: '#6F68EB',
red: '#F58D8A',
'section-lighter': '#3A3C4A',
},
fontFamily: {
sans: ['Mulish', 'sans-serif'],
},
spacing: {
'screen-90': '90vh',
'screen-80': '80vh',
'screen-70': '70vh',
},
maxHeight: {
'screen-90': '90vh',
'screen-80': '80vh',
'screen-70': '70vh',
},
minHeight: {
'screen-90': '90vh',
'screen-80': '80vh',
'screen-70': '70vh',
},
animation: {
'spin-slow': 'spin 3s linear infinite',
'fadeIn': 'fadeIn 0.5s ease-in forwards',
'fadeInUp': 'fadeInUp 0.5s ease-out forwards',
'slideInRight': 'slideInRight 0.5s ease-out forwards',
'pulse': 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'scaleIn': 'scaleIn 0.3s ease-out forwards',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
fadeInUp: {
'0%': {
opacity: '0',
transform: 'translateY(20px)'
},
'100%': {
opacity: '1',
transform: 'translateY(0)'
},
},
slideInRight: {
'0%': {
opacity: '0',
transform: 'translateX(-20px)'
},
'100%': {
opacity: '1',
transform: 'translateX(0)'
},
},
scaleIn: {
'0%': {
opacity: '0',
transform: 'scale(0.95)'
},
'100%': {
opacity: '1',
transform: 'scale(1)'
},
},
spin: {
'0%': {
transform: 'rotate(0deg)'
},
'100%': {
transform: 'rotate(360deg)'
},
},
pulse: {
'0%, 100%': {
opacity: '1',
transform: 'scale(1)',
},
'50%': {
opacity: '.9',
transform: 'scale(1.05)',
},
},
shutdown: {
'0%': { width: '0%' },
'100%': { width: '100%' }
}
},
},
},
}