-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
61 lines (59 loc) · 1.4 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/clj/*.clj", "./src/clj/*.edn"],
theme: {
extend: {
colors: {
white: "#fff",
dimgray: "#666",
gray: "#111",
},
fontFamily: {
roboto: "Roboto",
nunito: "Nunito"
},
listStyleType: {
"dash": "'-'"
},
spacing: {
m: "0.3rem",
s: "0.2rem",
xxl: "1.5rem"
}
},
lineHeight: {
"110": "110%",
"120": "120%",
"140": "140%",
"148": "148%",
"152": "152.62%"
},
fontSize: {
body: "1.25rem",
body2: "1.13rem",
"h1": "1.5rem",
"h2": "1.38rem",
"h3": "1.25rem",/*body 1*/
lg: "1.13rem",
base: "1rem",
xl: "1.25rem",
"3xl": "1.38rem",
"5xl": "1.5rem",
name: "3.75rem"
},
width: {
"44": "44.75rem",
"21": "21.25rem",
full: "100%"
},
gap: {
"5": "5rem",
"025": "0.25rem",
"25": "2.5rem",
"013": "0.13rem"
}
},
corePlugins: {
preflight: false,
},
};