-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
executable file
·60 lines (59 loc) · 1.86 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
corePlugins: {
preflight: true,
},
theme: {
extend: {
backgroundImage: {
mobile: "url('/img/mobile-bg.jpg')",
desktop: "url('/img/desktop-bg.png')",
},
fontFamily: "var(--mantine-font-family)",
spacing: {
xs: "var(--mantine-spacing-xs)",
sm: "var(--mantine-spacing-sm)",
md: "var(--mantine-spacing-md)",
lg: "var(--mantine-spacing-lg)",
xl: "var(--mantine-spacing-xl)",
},
borderRadius: {
xs: "var(--mantine-radius-xs)",
sm: "var(--mantine-radius-sm)",
md: "var(--mantine-radius-md)",
lg: "var(--mantine-radius-lg)",
xl: "var(--mantine-radius-xl)",
},
screens: {
xs: "30em",
sm: "48em",
md: "64em",
lg: "74em",
xl: "90em",
},
fontSize: {
xs: "var(--mantine-font-size-xs)",
sm: "var(--mantine-font-size-sm)",
md: "var(--mantine-font-size-md)",
lg: "var(--mantine-font-size-lg)",
xl: "var(--mantine-font-size-xl)",
},
colors: {
dimmed: "var(--mantine-color-dimmed)",
brand: [
"#ffede5",
"#ffd9cf",
"#fbb3a0",
"#f7896d",
"#f36742",
"#f15126",
"#f14517",
"#d6360b",
"#c02d06",
"#a82301",
],
},
},
},
};