-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (39 loc) · 892 Bytes
/
tailwind.config.js
File metadata and controls
39 lines (39 loc) · 892 Bytes
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
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontSize: {
"8xl": "7rem",
"9xl": "10rem",
"10xl": "12rem",
},
colors: {
snow: "#FFFCFF",
davys: "#50514F",
ash: "#CBD4C2",
aqua: "#2B91BD",
khaki: "#F1E8D1",
"bright-yellow": "#FFCF54",
maroon: "#CF8441",
leaf: "#697967",
},
fontFamily: {
sono: "Sono, sans-serif",
inter: "Inter, sans-serif",
"space-grotesk": "Space Grotesk, sans-serif",
"tan-nimbus": "'Tan Nimbus', sans-serif",
montserrat: "'Montserrat', sans-serif",
},
lineHeight: {
squash: "0.7",
},
borderWidth: {
20: "20px",
},
typography: {
DEFAULT: {},
},
},
},
plugins: [require("@tailwindcss/typography")],
};