-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (53 loc) · 1.02 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,ts,scss}"],
theme: {
fontSize: {
"sm": "0.75rem",
"base": "0.875rem",
"lg": "1.09375rem",
"xl": "1.3125rem",
"2xl": "1.53125rem",
"3xl": "1.75rem",
"4xl": "2.1875rem"
},
lineHeight: {
"normal": "normal",
"sm": "90%",
"base": "100%",
"lg": "120%",
"xl": "150%",
},
extend: {
colors: {
primary: "#224063",
text: {
primary: "#495057",
secondary: "#6C757D",
},
gray: {
50: "#f8f9fa",
primary: "#495057",
},
bluegray: {
100: "#dadee3",
},
green: {
primary: "#00A907",
},
blue: {
primary: "#3B82F6",
},
},
spacing: {
"content-lg": "980px",
"content-xl": "1180px",
},
screens: {
lg: "1180px",
xl: "1380px"
},
},
},
plugins: [],
};