-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (53 loc) · 1.19 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: [],
theme: {
colors: {
brand: "",
primary: "#004CAD",
"primary-light": "#3E86E1",
background: "#FCF4E8",
"primary-text": "#000000",
"primary-text-light": "#696969",
"background-alt": "#FFFCF9",
danger: "#d94e4e",
success: "#75FF83",
blue: "#1fb6ff",
purple: "#7e5bef",
pink: "#ff49db",
orange: "#f29100",
"orange-light": "#ffa756",
green: "#13ce66",
"green-light": "#5BFF6C",
yellow: "#ffc82c",
"gray-dark": "#273444",
gray: "#8492a6",
"gray-light": "#F1EFEC",
white: "#ffffff"
},
fontFamily: {
sans: ["Poppins", "sans-serif"],
serif: ["Garet Book", "Garet Heavy", "serif"],
milkdown: ["MilkdownIcons", "serif"]
},
extend: {
screens: {
"3xl": "1800px"
},
spacing: {
"8xl": "96rem",
"9xl": "128rem"
},
boxShadow: {
"4xl": "2px 3px 1px 5px black",
"5xl": "4px 5px 1px 8px black"
},
borderRadius: {
"4xl": "2rem"
}
}
},
plugins: [
require("@tailwindcss/typography")
]
}