-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (45 loc) · 921 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
blue: {
200: "#5A698F",
700: "#161D2F",
900: "#10141E",
},
red: "#FC4747",
white: "#FFFFFF",
},
fontSize: {
xs: ['13px', {
lineHeight: '16px',
fontWeight: '300'
}],
sm: ['15px', {
lineHeight: '19px',
fontWeight: '500'
}],
base: ['16px', {
lineHeight: '20px',
fontWeight: '300'
}],
lg: ['18px', {
lineHeight: '23px',
fontWeight: '500'
}],
xl : ['24px', {
lineHeight: '3Opx',
fontWeight: '300'
}],
'2xl': ['32px', {
lineHeight: '40px',
fontWeight: '300'
}]
},
extend: {},
},
plugins: [],
};