This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
74 lines (74 loc) · 1.8 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
module.exports = {
darkMode: 'class',
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
screens: {
'2k': '2000px',
// => @media (min-width: 2000px) { ... }
},
colors: {
'theme-dark': '#171c28',
},
keyframes: {
wave: {
'0%': { transform: 'rotate(0deg)' },
'10%': { transform: 'rotate(-10deg)' },
'20%': { transform: 'rotate(12deg)' },
'30%': { transform: 'rotate(-10deg)' },
'40%': { transform: 'rotate(9deg)' },
'50%': { transform: 'rotate(0deg)' },
to: { transform: 'rotate(0deg)' },
},
},
flex: {
80: '80% 1',
20: '20% 1',
},
animation: {
waveEmoji: 'wave 1.8s infinite',
},
fontFamily: {
agustina: [
'Agustina Regular',
'Inter',
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'"Segoe UI"',
'Roboto',
'"Helvetica Neue"',
'Arial',
'"Noto Sans"',
'sans-serif',
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
montserrat: [
'Montserrat',
'Inter',
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'"Segoe UI"',
'Roboto',
'"Helvetica Neue"',
'Arial',
'"Noto Sans"',
'sans-serif',
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
},
},
},
// https://github.com/tailwindlabs/tailwindcss-forms
plugins: [require('@tailwindcss/forms')],
};