-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
57 lines (57 loc) · 1.11 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-desktop": "url('../../public/dk-gradient-bg.png')",
"gradient-mobile": "url('../../public/mb-gradient-bg.png')"
},
colors: {
main: "#090909",
font: "#FBFBFB",
utils: {
primary: "#0D0D0D",
secondary: "#111111"
},
accents: {
primary: "#9740EF",
secondary: "#D121EE",
},
},
fontFamily: {
main: ["Noto Sans", "Helvetica", "sans-serif"],
accent: ["Poppins", "sans-serif"],
},
fontSize: {
"2xs": ".6rem",
},
spacing: {
1: '4px',
2: '8px',
3: '12px',
4: '16px',
5: '20px',
6: '24px',
7: '28px',
8: '32px',
9: '36px',
10: '40px',
11: '44px',
12: '48px',
13: '52px',
14: '56px',
15: '60px',
16: '64px',
17: '68px',
18: '72px',
19: '76px',
20: '80px',
}
},
},
plugins: [],
};