-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) · 836 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (34 loc) · 836 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['index.html', './src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
fontSize: {
xxsm: '0.625rem', // 10px
xsm: '0.75rem', // 12px
sm: '0.875rem', // 14px
regular: '1rem', // 16px
md: '1.25rem', // 20px
lg: '1.5rem', // 24px
xlg: '2rem', // 32px
xxlg: '2.5rem', // 40px
},
lineHeight: {
xxsm: '0.875rem', // 14px
xsm: '1rem', // 16px
sm: '1.25rem', // 20px
regular: '1.375rem', // 22px
md: '1.75rem', // 28px
lg: '2rem', // 32px
xlg: '2.375rem', // 38px
xxlg: '2.6875rem', // 43px
},
fontFamily: {
poppins: ['Poppins', 'sans-serif'],
},
colors: {
}
},
},
plugins: [],
}