-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (48 loc) · 1.52 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
screens: {
sm: "576px",
md: "768px",
lg: "1024px",
xl: "1270px",
},
extend: {
colors: {
primary: {
main: "#3b82f6",
dark: "#1d4ed8",
light: "#93c5fd",
extraLight: "#bfdbfe",
},
secondary: {
main: "#a855f7",
dark: "#7e22ce",
light: "#d8b4fe",
},
},
container: {
center: true,
},
fontFamily: {
raleway: ["'Raleway', sans-serif"],
rancho: ["'Rancho', cursive"],
},
backgroundImage: {
"slider-1":
"linear-gradient(to bottom right, rgba(0,0,0,0.4), rgba(0,0,0,0.3)), url('https://i.postimg.cc/7YG59S4k/esmonde-yong-9-B08udu-My-Y-unsplash-1.jpg')",
"slider-2":
"linear-gradient(to bottom right, rgba(0,0,0,0.4), rgba(0,0,0,0.3)), url('https://i.postimg.cc/kgd61Dwh/miltiadis-fragkidis-UB2u-L4-RFTHA-unsplash.jpg')",
"slider-3":
"linear-gradient(to bottom right, rgba(0,0,0,0.4), rgba(0,0,0,0.3)), url('https://i.postimg.cc/wMKbyhck/recal-media-ue-BIGLmi-I5-A-unsplash.jpg')",
},
boxShadow: {
card: "rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;",
"card-2": " rgba(100, 100, 111, 0.2) 0px 7px 29px 0px",
nav: " rgba(17, 12, 46, 0.15) 0px 48px 100px 0px",
},
},
},
plugins: [require("daisyui")],
};