-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
73 lines (73 loc) · 1.99 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
62
63
64
65
66
67
68
69
70
71
72
73
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
color: {
cta: "red",
},
backgroundImage: {
"hero-pattern": "url('/assets/prezent.png')",
overlay:
" linear-gradient(168.53deg, rgba(234, 255, 254, 0.04) 0%, rgba(201, 229, 241, 0.04) 97.46%)",
footer:
" linear-gradient(0deg, #090414 0%, rgba(20, 8, 46, 0) 143.14%)",
navbar:
"linear-gradient(101.24deg, rgba(45, 51, 71, 0.9) -1.38%, rgba(45, 51, 71, 0) 105.06%)",
card: "linear-gradient(117.29deg, rgba(234, 255, 254, 0.08) 2.63%, rgba(234, 255, 254, 0) 100%);",
cta: " linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.056) 100%);",
banner: "url('/assets/people.png')",
},
backgroundPosition: {
"top-4": "center top 11rem",
"bottom-4": "95%",
},
fontFamily: {
jarkata: ["Plus Jakarta Sans", "sans-serif"],
syne: ["Syne", "sans-serif"],
},
spacing: {
"25rem": "25rem",
"41rem": "41rem",
"50rem": "50rem",
"41%": "41%",
"42%": "42%",
},
maxWidth: {
"1/2": "50%",
},
lineHeight: {
"custom-leading": "72px",
"custom-height": "66px",
"sm-height": "45px",
"sm-small": "40px",
"sm-medium": "56px",
"sm-xx": "28px",
"sm-x": "32px",
36: "36px",
48: "48px",
"sm-smallxxx": "10px",
24: "24px",
},
fontSize: {
"7xl": "60px",
small: "30px",
smallxx: "22px",
smallx: "34px",
minimal: "16px",
"hero-text": "66px",
medium: "42px",
28: "28px",
smallxxx: "12px",
},
textUnderlineOffset: {
12: "1.5rem",
},
},
},
plugins: [],
};