-
Notifications
You must be signed in to change notification settings - Fork 7
/
tailwind.config.js
61 lines (60 loc) · 1.39 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
54
55
56
57
58
59
60
61
const figma_color = {
primary_light: "#C24F1E",
primary_dark: "#D54000",
secondary: "#111827",
tertiary: "#3882B7",
code_background: "#2B2A2A",
installation_background: "#FAF8F3",
paragraph: "#555659",
curl_icon: "#364150",
faq_background: "#D0D0D0",
gradient_start: "#0B1228",
gradient_end: "#0F254F",
information_background: "#F28B03",
};
/** @type {import('tailwindcss').Config} */
export default {
content: ["**/*.mlx"],
theme: {
screens: {
sm: "60em",
lg: "80em",
},
extend: {
colors: {
primary: {
light: figma_color.primary_light,
dark: figma_color.primary_dark,
},
secondary: figma_color.secondary,
tertiary: figma_color.tertiary,
section: {
manual: figma_color.installation_background,
code: figma_color.code_background,
faq: {
background: figma_color.faq_background,
},
},
copy: figma_color.curl_icon,
block: {
p: figma_color.paragraph,
},
gradient: {
start: figma_color.gradient_start,
end: figma_color.gradient_end,
},
warning: figma_color.information_background,
},
maxWidth: {
banner: "890px",
lg: "1024px",
},
width: {
lg: "1024px",
},
},
borderWidth: {
DEFAULT: "1px",
},
},
};