-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
102 lines (101 loc) · 3.38 KB
/
tailwind.config.ts
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
96
97
98
99
100
101
102
import type { Config } from "tailwindcss";
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
fontFamily: {
inter: ["var(--font-inter)"],
dmsans: ["var(--font-dmsans)"],
geist: ["var(--font-geist)"],
},
colors: {
current: "curentColor",
transparent: "transparent",
purple: {
1: "#6835F5",
2: "#6949EB",
3: "#A38DFF",
4: "#DDD5FF",
},
white: {
1: "rgba(255, 255, 255, 1)",
2: "rgba(255, 255, 255, 0.7)",
3: "rgba(255, 255, 255, 0.6)",
},
grey: {
1: "#7E7E7E",
2: "#999999",
3: "#8A8C8F",
4: "#B4B4B4",
5: "#EBEBEB",
6: "#F6F6F6",
7: "rgb(207,207,207,0.7)",
8: "#E9E9E9",
9: "#FAF9FC",
10: "#F6F6F6",
11: "#F6F6F6",
},
black: {
1: "#000000",
2: "#222222",
3: "#343434",
4: "#3C3C3C",
},
blue: {
1: "#110C24",
},
pink: {
1: "#FA08FF",
},
red: "red",
},
screens: {
"3xl": { max: "1535px" },
// => @media (max-width: 1535px) { ... }
"2xl": { max: "1380px" },
// => @media (max-width: 1535px) { ... }
xl: { max: "1279px" },
// => @media (max-width: 1279px) { ... }
xlg: { max: "1150px" },
// => @media (max-width: 1150px) { ... }
lg: { max: "1024px" },
// => @media (max-width: 1023px) { ... }
xmd: { max: "950px" },
// => @media (max-width: 950px) { ... }
md: { max: "850px" },
// => @media (max-width: 850px) { ... }
smd: { max: "700px" },
// => @media (max-width: 700px) { ... }
sm: { max: "600px" },
// => @media (max-width: 600px) { ... }
ssm: { max: "500px" },
// => @media (max-width: 500px) { ... }
},
extend: {
backgroundImage: {
"main-bg": "url('../assets/bg.svg')",
"home-1":
"linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 24%, rgba(85,0,224,0.8) 42%, rgba(71,0,186,0.6) 47%, rgba(0,0,0,1) 66%), url('../assets/home/bg-1.svg')",
"home-2":
"linear-gradient(to bottom, rgba(0,0,0,1) 4%, rgba(0,0,0,0.6) 32%, rgba(85,0,224,0.8) 53%, rgba(0,0,0,1) 74%), url('../assets/home/bg-1.svg')",
"about-1":
"linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 24%, rgba(85,0,224,0.8) 42%, rgba(0,0,0,1) 66%), url('../assets/home/bg-1.svg')",
"about-2":
"linear-gradient(to bottom, rgba(0,0,0,1) 4%, rgba(0,0,0,0.6) 17%, rgba(85,0,224,0.8) 50%, rgba(0,0,0,1) 75%), url('../assets/home/bg-1.svg')",
"contact-1":
"linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 16%, rgba(85,0,224,0.8) 52%, rgba(0,0,0,1) 74%), url('../assets/home/bg-1.svg')",
"our-work-1":
"linear-gradient(to bottom, rgba(0,0,0,1) 4%, rgba(0,0,0,0.6) 22%, rgba(85,0,224,0.8) 50%, rgba(0,0,0,1) 75%), url('../assets/home/bg-1.svg')",
"contact-2":
"linear-gradient(to bottom, rgba(0,0,0,1) 4%, rgba(0,0,0,0.6) 22%, rgba(85,0,224,0.8) 50%, rgba(0,0,0,1) 81%), url('../assets/home/bg-1.svg')",
},
gridTemplateColumns: {
"service-grid": "repeat(auto-fit, minmax(28rem, 1fr))",
},
},
},
plugins: [],
} satisfies Config;