-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
63 lines (60 loc) · 1.33 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
62
63
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {
colors: {
orange: "hsl(26, 100%, 55%)",
paleOrange: "hsl(25, 100%, 94%)",
veryDarkBlue: "hsl(220, 13%, 13%)",
darkGrayishBlue: "hsl(219, 9%, 45%)",
grayishBlue: "hsl(220, 14%, 75%)",
lightGrayishBlue: "hsl(223, 64%, 98%)",
white: "hsl(0, 0%, 100%)",
black: "hsl(0, 0%, 0%)",
},
fontFamily: {
sans: ["Kumbh Sans", "sans-serif"],
},
fontWeight: {
400: 400,
700: 700,
},
width: {
"375px": "375px",
"360px": "360px",
"328px": "328px",
"60%": "60%",
"260px": "260px",
"1200px": "1200px",
"1000px": "1000px",
"900px": "900px",
"500px": "500px",
"430px": "430px",
"90%": "90%",
"300px": "300px",
},
height: {
"255px": "255px",
"175px": "175px",
"300px": "300px",
},
inset: {
"120px": "120px",
"172px": "172px",
18: "4.5rem",
},
gap: {
// 4.5: "1.rem",
},
translate: {
customTranslate: "",
},
fontSize: {
0.5: "0.7rem",
"1rem": "1rem",
},
},
},
plugins: [],
};