-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
95 lines (91 loc) · 2.24 KB
/
tailwind.config.js
File metadata and controls
95 lines (91 loc) · 2.24 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
screens: {
sm: "640px",
// => @media (min-width: 640px) { ... }
md: "768px",
// => @media (min-width: 768px) { ... }
lg: "1024px",
// => @media (min-width: 1024px) { ... }
xl: "1280px",
// => @media (min-width: 1280px) { ... }
"2xl": "1536px",
// => @media (min-width: 1536px) { ... }
},
extend: {
lineHeight: {
85: "85%",
"08": "0.8",
},
fontSize: {
xs: "0.8rem",
sm: "0.93rem",
base: "1.06rem",
md: "1.06rem",
lg: "1.19rem",
xl: "1.33rem",
"2xl": "1.59rem",
"3xl": "1.99rem",
"4xl": "2.39rem",
"5xl": "3.19rem",
"6xl": "3.98rem",
"7xl": "4.78rem",
},
fontFamily: {
manrope: "Manrope",
prompt: "Prompt",
raleway: "Raleway",
GilroyMedium: "GilroyMedium",
GilroyBold: "GilroyBold",
GilroyExtraBold: "GilroyExtraBold",
DMSans: "DM Sans",
lexend: ["Lexend", "sans-serif"],
redHat: "Red Hat Display",
inter: "Inter",
nunito: "Nunito",
},
width: {
22: "74px",
},
colors: {
main: "#1a4fd8",
mainDark: "#1C2939",
dark: {
100: "#1F2937",
},
"custom-gray": {
main: "#F4F5F8",
secondary: "#dce3ea",
},
},
whiteSpace: {
nowrap: "nowrap",
},
backgroundPosition: {
center: "center",
unset: "unset",
},
backgroundColor: {
"white-glass": "rgba(255, 255, 255, 0.15);",
"black-glass": "rgba(2, 2, 2, 0.15);",
"white-glass-mobile": "rgba(255, 255, 255, 0.85);",
"black-glass-mobile": "rgba(2, 2, 2, 0.65);",
},
gridTemplateColumns: {
14: "repeat(14, minmax(0, 1fr))",
16: "repeat(16, minmax(0, 1fr))",
13: "repeat(13, minmax(0, 1fr))",
},
},
},
plugins: [],
purge: false,
};