-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
61 lines (60 loc) · 1.63 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
screens: {
"3xl": "1792px",
"4xl": "2048px",
},
colors: {
primary: "#4570A1",
secondary: "#D4E0ED",
tertiary: "#5B9EEF",
white: "#F5F8FA",
"black-100": "#0E1620",
"black-75": "rgba(14, 22, 32, 0.75)",
"black-50": "rgba(14, 22, 32, 0.50)",
"black-25": "rgba(14, 22, 32, 0.25)",
"black-10": "rgba(14, 22, 32, 0.10)",
"black-5": "rgba(14, 22, 32, 0.5)",
},
fontSize: {
"heading-1": "3.8333rem", // 69px
"heading-2": "3.0556rem", // 55px
"heading-3": "2.4444rem", // 44px
"heading-4": "1.9444rem", // 35px
"heading-5": "1.5556rem", // 28px
"heading-6": "1.2778rem", // 23px
paragraph: "1rem", // 18px
"paragraph-sm": "0.8333rem", // 15px
"paragraph-xs": "0.6667rem", // 12px
},
lineHeight: {
heading: "1.2",
paragraph: "1.6",
},
fontFamily: {
heading: ["Montserrat", "sans-serif"],
body: ["Montserrat", "sans-serif"],
},
fontWeight: {
extraLight: "100",
thin: "200",
light: "300",
regular: "400",
medium: "500",
semiBold: "600",
bold: "700",
extrabold: "800",
black: "900",
},
},
},
plugins: [require("@tailwindcss/typography"), require("tailwind-hamburgers")],
};
export default config;