-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
30 lines (29 loc) · 1015 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,ts}"],
theme: {
extend: {
colors: {
red: "#FC4747",
"dark-blue": "#10141E",
"graish-blue": "#5A698F",
"semi-dark-blue": "#161D2F",
"pure-white": "#FFFFFF",
},
fontFamily: {
outfit: ["Outfit", "sans-serif"],
},
fontSize: {
// Headings
"heading-l": ["32px", { lineHeight: "1.25", fontWeight: "300" }], // Outfit Light
"heading-m": ["24px", { lineHeight: "1.25", fontWeight: "300" }], // Outfit Light
"heading-s": ["24px", { lineHeight: "1.25", fontWeight: "500" }], // Outfit Medium
"heading-xs": ["18px", { lineHeight: "1.25", fontWeight: "500" }], // Outfit Medium
// Body text
"body-m": ["15px", { lineHeight: "1.6", fontWeight: "300" }], // Outfit Light
"body-s": ["13px", { lineHeight: "1.6", fontWeight: "300" }], // Outfit Light
},
},
},
plugins: [],
};