-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
63 lines (63 loc) · 1.37 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}'
],
theme: {
fontFamily: {
primaryFont: 'var(--space-grotesk-font), system-ui, sans-serif',
secondaryFont: 'var(--inter-font), system-ui, sans-serif'
},
container: {
center: true
},
extend: {
colors: {
blue: '#7686b7',
'light-blue': '#d2d7e3',
black: '#0a0a0a',
white: '#efefef',
red: '#e32626',
yellow: '#dfcd24',
green: '#34a400'
},
transitionDuration: {
400: '400ms'
},
animation: {
skeleton: 'shine 2.5s ease-in-out infinite',
loading: 'loading 2s ease-out infinite'
},
keyframes: {
shine: {
to: {
backgroundPositionX: '-200%'
}
},
loading: {
'0%': {
transform: 'translateY(100%)'
},
'25%': {
transform: 'translateY(150%)'
},
'50%': {
transform: 'translateY(0%)'
},
'100%': {
transform: 'translateY(-100%)'
}
}
},
strokeWidth: {
3: '3px',
3.5: '3.5px',
4: '4px'
}
}
},
plugins: [],
darkMode: 'class'
}