-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.config.js
66 lines (64 loc) · 1.56 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["content/**/*.md", "layouts/**/*.html"],
theme: {
extend: {
},
colors: {
transparent: 'transparent',
current: 'currentColor',
'white': {
DEFAULT: '#FFFFFF',
'dark': '#E5E4D7'
},
'black': '#1E1E1E',
'red': {
DEFAULT: '#B81A56',
'dark': '#992350'
},
},
fontFamily: {
'serif': ['"Space Grotesk"'],
},
fontSize: {
xs: '0.75rem', /* 12px */
sm: '0.875rem', /* 14px */
base: ['1rem', {
lineHeight: '1.313rem',
letterSpacing: '-0.054rem',
fontWeight: '400',
}], /* 16px */
lg: ['1.125rem', {
lineHeight: '1.438rem',
letterSpacing: '-0.06rem',
fontWeight: '400',
}], /* 18px */
xl: ['1.75rem', {
lineHeight: '2.25rem',
letterSpacing: '-0.094rem',
fontWeight: '400',
}], /* 28px */
'2xl': ['2rem', {
lineHeight: '2.25rem',
letterSpacing: '-0.167rem',
fontWeight: '400',
}], /* 32px */
'3xl': ['2.25rem', {
lineHeight: '2.875rem',
letterSpacing: '-0.188rem',
fontWeight: '400',
}], /* 36px */
'4xl': ['4rem', {
lineHeight: '4.5rem',
letterSpacing: '-0.333rem',
fontWeight: '400',
}], /* 64px */
'5xl': ['7.5rem', {
lineHeight: '6.875rem',
letterSpacing: '-0.625rem',
fontWeight: '400',
}], /* 120px */
}
},
plugins: [],
}