-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
77 lines (68 loc) · 4.21 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/ui/**/*.{js,ts,jsx,tsx,mdx}",
"./src/sections/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: () => ({
heroDesk: `linear-gradient(rgba(2, 15, 8, 0.5), rgba(2, 15, 8, 0.5)), image-set(url('/images/sections/hero-desk.png') 1x, url('/images/sections/[email protected]') 2x)`,
heroTab: `linear-gradient(rgba(2, 15, 8, 0.5), rgba(2, 15, 8, 0.5)), image-set(url('/images/sections/hero-tab.png') 1x, url('/images/sections/[email protected]') 2x)`,
heroMob: `linear-gradient(rgba(2, 15, 8, 0.5), rgba(2, 15, 8, 0.5)), image-set(url('/images/sections/hero-mob.png') 1x, url('/images/sections/[email protected]') 2x)`,
aboutDesk: `linear-gradient(rgba(2, 15, 8, 0.5), rgba(2, 15, 8, 0.5)), image-set(url('/images/sections/about-desk.png') 1x, url('/images/sections/[email protected]') 2x)`,
aboutTab: `linear-gradient(rgba(2, 15, 8, 0.5), rgba(2, 15, 8, 0.5)), image-set(url('/images/sections/about-tab.png') 1x, url('/images/sections/[email protected]') 2x)`,
aboutMob: `linear-gradient(rgba(2, 15, 8, 0.5), rgba(2, 15, 8, 0.5)), image-set(url('/images/sections/about-mob.png') 1x, url('/images/sections/[email protected]') 2x)`,
chooseUsDesk: `linear-gradient(rgba(2, 15, 8, 0.75), rgba(2, 15, 8, 0.75)), rgba(2, 15, 8, 0.5)), image-set(url('/images/sections/chooseUs-desk.png') 1x, url('/images/sections/[email protected]') 2x)`,
chooseUsTab: `linear-gradient(rgba(2, 15, 8, 0.75), rgba(2, 15, 8, 0.75)), image-set(url('/images/sections/chooseUs-tab.png') 1x, url('/images/sections/[email protected]') 2x)`,
chooseUsMob: `linear-gradient(rgba(2, 15, 8, 0.75), rgba(2, 15, 8, 0.75)), image-set(url('/images/sections/chooseUs-mob.png') 1x, url('/images/sections/[email protected]') 2x)`,
ourGallery: `linear-gradient(rgba(2, 15, 8, 0.85), rgba(2, 15, 8, 0.85)),url(/images/sections/ourGallery.png)`,
galleryDesk: `linear-gradient(rgba(2, 15, 8, 0.75), rgba(2, 15, 8, 0.75)), rgba(2, 15, 8, 0.5)), image-set(url('/images/sections/ourGallery-desk.png') 1x, url('/images/sections/[email protected]') 2x)`,
galleryTab: `linear-gradient(rgba(2, 15, 8, 0.75), rgba(2, 15, 8, 0.75)), image-set(url('/images/sections/ourGallery-tab.png') 1x, url('/images/sections/[email protected]') 2x)`,
galleryMob: `linear-gradient(rgba(2, 15, 8, 0.75), rgba(2, 15, 8, 0.75)), image-set(url('/images/sections/ourGallery-mob.png') 1x, url('/images/sections/[email protected]') 2x)`,
contactUsDesk: `linear-gradient(rgba(2, 15, 8, 0.75), rgba(2, 15, 8, 0.75)), rgba(2, 15, 8, 0.5)), image-set(url('/images/sections/contactUs-desk.png') 1x, url('/images/sections/[email protected]') 2x)`,
contactUsTab: `linear-gradient(rgba(2, 15, 8, 0.75), rgba(2, 15, 8, 0.75)), image-set(url('/images/sections/contactUs-tab.png') 1x, url('/images/sections/[email protected]') 2x)`,
contactUsMob: `linear-gradient(rgba(2, 15, 8, 0.75), rgba(2, 15, 8, 0.75)), image-set(url('/images/sections/contactUs-mob.png') 1x, url('/images/sections/[email protected]') 2x)`,
invalid: "url(/icons/invalid.svg)",
}),
backgroundColor: {
white: "#fff",
black: "rgba(0,0,0,0.9)",
overlay: "rgba(1, 10, 5, 0.92)",
light1: "rgba(255, 255, 255, 0.1)",
light2: "rgba(255, 255, 255, 0.2)",
input: "rgba(255, 255, 255, 0.05)",
},
fontFamily: {
inter: ["Inter", "sans-serif"],
karantina: ["Karantina", "system-ui"],
},
letterSpacing: {
thin: "-.04em",
base: "0.09em",
normal: "0.1em",
wide: ".18em",
large: "2.28em",
},
screens: {
xs: "320px",
x: "480px",
sm: "768px",
md: "1024px",
lg: "1280px",
xl: "1440px",
smOnly: { max: "767.98px" },
mdOnly: { min: "768px", max: "1279.98px" },
},
colors: {
mainWhite: "#ffffff",
backdrop: "rgba(1, 10, 5, 0.75)",
red: "#FF5757",
},
},
},
plugins: [],
};