-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
66 lines (66 loc) · 1.29 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
module.exports = {
content: [
'./dist/index.html'
],
theme: {
extend: {
keyframes: {
globe: {
'from': { transform: 'rotate3d(0,1,0,0deg)' },
'to': { transform: 'rotate3d(0,1,0,180deg)' }
}
},
animation: {
globe: 'globe 12s ease-out infinite',
},
fontFamily: {
serif: 'Editorial New, Times, serif',
sans: 'Tomato Grotesk, Helvetica, Arial, sans-serif'
},
fontSize: {
xs: [
'clamp( 0.75rem, calc((0.9375rem + 0.3125vw) * 0.75), 0.9375rem)',
'1.5'
],
sm: [
'clamp( 0.875rem, calc((0.9375rem + 0.3125vw) * 0.875), 1.09375rem)',
'1.5'
],
base: [
'clamp( 1rem, calc(0.9375rem + 0.3125vw), 1.25rem)',
'1.5'
],
lg: [
'clamp( 1rem, calc(0.75rem + 1.25vw), 2rem)',
'1.5'
],
// xl: [],
'2xl': [
'clamp( 2.6667rem, calc((0.9375rem + 0.3125vw) * 2.6667), 3.33334rem )',
'1.1875'
],
'3xl': [
'clamp( 3.75rem, calc((0.9375rem + 0.3125vw) * 3.75), 4.6875rem )',
'1.1875'
]
},
maxWidth: {
'27': '27ch',
'42': '42ch'
},
colors: {
"space-blue": {
200: "#999BFF",
300: "#6668FF",
400: "#3336FF",
500: "#0006ff",
600: "#0003CC",
700: "#000299"
}
}
}
},
plugins: [
require('@tailwindcss/forms')
]
};