forked from Malek-GH/Leajlak-Astro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
43 lines (43 loc) · 1.33 KB
/
tailwind.config.mjs
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
backgroundImage: {
logistic: "url('/src/images/bg/fleet-page.png')",
logistic_mobile: "url('/src/images/bg/fleet-page-mobile.png')",
merchant: "url('/src/images/bg/restaurent-page.png')",
},
colors: {
primaryOrange: "rgba(236, 97, 49, 1)",
lightGray: "rgba(246, 246, 246, 1)",
darkGray: "rgba(38, 38, 38, 1)",
customYellow: "rgba(247, 182, 20, 1)",
},
fontSize: {
sm: "14px",
base: "16px",
},
boxShadow: {
Cxl: "8px 3px 10px 0px rgba(0, 0, 0, 0.25);",
innerLg: "inset 0 0px 10px 0 rgb(0 0 0 / 0.2);",
},
letterSpacing: {
xl: "0.2em",
},
flex: {
card_full: "0 1 calc(20% - 20px)",
card_md: "0 1 calc(50% - 20px)",
card_sm: "0 1 calc(100% - 20px)",
card_solution_xl: "0 1 calc(33.3333% - 20px)",
card_solution_md: "0 1 calc(50% - 40px)",
card_xl: "0 1 calc(100% - 20px)",
card_testimonial_xl: "0 1 calc(33.3333% - 20px)",
card_team_xl: "0 1 25%",
card_team_md: "0 1 50%",
card_team_sm: "0 1 100%",
},
},
},
plugins: [require("tailwindcss-animated")],
};