-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
55 lines (55 loc) · 1.03 KB
/
tailwind.config.cjs
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
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["index.html", "./src/scripts/**/*.js"],
theme: {
fontFamily: {
sans: ["'visuelt'", ...defaultTheme.fontFamily.sans],
},
spacing: {
0: "0rem",
2: "0.125rem",
10: "0.625rem",
20: "1.25rem",
30: "1.875rem",
40: "2.5rem",
px: "1px",
em: "1em",
rem: "1rem",
},
colors: {
transparent: "transparent",
current: "currentColor",
white: "#FFFFFF",
natural: "#EBE6DC",
grey: "#9EA09E",
black: "#1A1919",
purple: "#6871FF",
stone: "#98A297",
mint: "#E0F0ED",
green: "#93CC9C",
violet: "#CCAFF3",
sky: "#C6C9F7",
pink: "#EBC4B7",
gold: "#F7CF91",
zest: "#EF8F6A",
leaf: "#73854B",
moss: "#B0AE89",
},
fontSize: {
sm: "0.875rem",
md: "1.25rem",
lg: "1.5rem",
},
extend: {
height: {
screen: "calc(var(--vh, 1vh) * 100)",
},
maxHeight: {
screen: "calc(var(--vh, 1vh) * 100)",
},
minHeight: {
screen: "calc(var(--vh, 1vh) * 100)",
},
},
},
};