-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
57 lines (56 loc) · 1.23 KB
/
tailwind.config.js
File metadata and controls
57 lines (56 loc) · 1.23 KB
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
const defaultTheme = require("tailwindcss/defaultTheme")
module.exports = {
darkMode: 'class',
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
'sans': ['Ubuntu', ...defaultTheme.fontFamily.sans]
},
extend: {
fontSize: {
xs: ['12px', {
lineHeight: '15px',
letterSpacing: 0,
fontWeight: 300
}],
sm: ['15px', {
lineHeight: '17px',
letterSpacing: 0
}],
base: ['16px', {
lineHeight: '28px',
letterSpacing: 0
}],
lg: ['17px', {
lineHeight: '19px',
letterSpacing: 0
}],
xl: ['18px', {
lineHeight: '20px',
letterSpacing: 0
}],
'2xl': ['22px', {
lineHeight: '25px',
letterSpacing: 0
}],
'3xl': ['26px', {
lineHeight: '30px',
letterSpacing: 0
}],
'4xl': ['38px', {
lineHeight: '43px',
letterSpacing: 0
}],
'5xl': ['42px', {
lineHeight: '48px',
letterSpacing: 0
}],
},
},
},
plugins: [],
}