-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
71 lines (71 loc) · 1.5 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
screens: {
sm: "640px",
md: "768px",
lg: "992px",
xl: "1080px",
"2xl": "1294px",
"3xl": "1921px",
"4xl": "2880px"
},
extend: {
backgroundImage: {
'slide-1' : "url('../../public/slide1.jpg')",
'slide-2' : "url('../../public/slide2.jpg')",
'slide-3' : "url('../../public/slide3.jpg')"
},
container: {
center: true,
padding: {
DEFAULT: "1rem",
},
},
colors: {
primary: {
DEFAULT: "#2191FB",
100: "#E8F3FF",
200: "#DCEAF8",
300: "#AFC1CC",
500: "#2191FB",
700: "#1066B8",
900: "#0E1C36",
},
secondary: {
DEFAULT: "#FB6107",
100: "#F9F4F2",
200: "#F2E6E0",
300: "#F89E6A",
500: "#FB6107",
700: "#AE4304",
},
green: {
DEFAULT: "#03CEA4",
100: "#F6F8F9",
200: "#D9F1EF",
300: "#9DEEDD",
500: "#03CEA4",
700: "#079E7F",
},
amber: {
150: "#fdeeb4"
},
black: {
700: "#565758",
},
gray: {},
semiTransparent: {
DEFAULT: "#ffffffcc",
},
},
boxShadow: {
'3xl': 'inset 0 35px 60px -15px rgba(0, 0, 0, 1)',
}
},
},
plugins: [],
}