-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
112 lines (110 loc) · 3.28 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
103
104
105
106
107
108
109
110
111
112
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
animation: {
"active-boxes":
"text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both",
},
keyframes: {
"text-focus-in": {
"0%": {
"-webkit-filter": "blur(10px)",
filter: "blur(10px)",
opacity: "0",
},
"100%": {
"-webkit-filter": "blur(0px)",
filter: "blur(0px)",
opacity: "1",
},
},
},
screens: {
tablet: "835px",
desktop: "1440px",
xl: "1900px",
xxl: "2300px",
},
fontSize: {
"12": "12px",
"14": "14px",
"16": "16px",
"18": "18px",
"20": "20px",
"22": "22px",
"24": "24px",
"26": "26px",
"28": "28px",
"30": "30px",
"32": "32px",
"34": "34px",
"36": "36px",
"48": "48px",
"44": "44px",
"50": "50px",
},
fontFamily: {
dmSans: ["DM Sans", "sans-serif"],
jakarta: ["Plus Jakarta Sans", "sans-serif"],
},
colors: {
white: "#ffffff",
cream: "#FCFCF8",
dark: "#151513",
yellow: "#FCD503",
yellowLight: "#FFF8E3",
violet: "#B603FC",
greyFont: "#6B6B6B",
greyLines: "#CCCCCC",
greyLightLines: "#EAEAEA",
greyBorders: "#EAEAE7",
backdrop: "rgba(0, 0, 0, 0.5)",
},
borderRadius: {
"footer-radius": "40px 40px 0px 0px",
radius24: "24px",
"header-radius": "0px 0px 12px 12px",
"menu-radius": "0px 0px 26px 26px",
"hero-radius": "400px 0px 0px 400px",
"hero-radius-big": "450px ",
"hero-radius-dog": "0px 0px 0px 450px ",
},
boxShadow: {
"boxes-shadow": "0px 4px 4px 0px rgba(0, 0, 0, 0.25)",
"button-shadow": "0 2px 2px rgba(0, 0, 0, 0.25)",
"hero-shadow": "0px 4px 10px 0px rgba(207, 207, 207, 0.7)",
"footer-shadow": "0px 4px 10px 0px #000",
"header-shadow": "0px 4px 10px 0px #F0F1F8",
"prices-shadow": "0px 4px 10px 0px rgba(234, 234, 231, 1)",
"google-shadow":
"11.456px 8.019px 22.912px rgba(0, 0, 0, 0.08), -2.291px -1.146px 9.165px rgba(0, 0, 0, 0.08)",
clickonmeshadow: "0px 4px 10px rgba(222, 223, 230, 0.7)",
"reg-shadow": "2px 4px 10px 0px rgba(222, 223, 230, 0.70)",
"card-shadow": "0px 4px 10px 0px rgba(222, 223, 230, 0.70)",
},
backgroundImage: {
"gradient-btn": "linear-gradient(180deg, #FCD503 14%, #FCB603 100%)",
"hero-bg": "linear-gradient(180deg, #FCD503 0%, #FCB603 100%)",
"services-dog1": "url('/images/servicesDog1.png')",
"services-dog2": "url('/images/servicesDog2.png')",
"button-shadow": "0px 2px 2px 0px #00000040",
striped: "rgba(255, 248, 227, 1)",
},
backgroundSize: {
"size-200": "200% 200%",
},
backgroundPosition: {
"pos-0": "0% 0%",
"pos-100": "100% 100%",
},
},
},
plugins: [],
};
export default config;