forked from alisamadiii/AniLearn.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (41 loc) · 1.12 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{ts,tsx}",
"./pages/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./layouts/**/*.{ts,tsx}",
],
theme: {
extend: {
boxShadow: {
button: "0 11px 31px rgba(0, 0, 0, .25)",
card: "-1rem 0 20px rgba(0, 0, 0, .25)",
warning: "inset 0 0 5px",
error: "inset 0 0 5px",
success: "inset 0 0 5px",
},
colors: {
primary: "#0057FF",
paypal: "#002C8A",
warning: "#FFCC00",
error: "red",
success: "green",
},
space: {
img_overlapping: "-10px",
},
backgroundImage: {
"slide-animation": "url('../public/section1.gif')",
"square-pattern": `linear-gradient(rgba(0, 0, 0, 0.036) 2px, transparent 2px), linear-gradient(90deg, rgba(0, 0, 0, 0.036) 1px, transparent 1px);`,
},
backgroundSize: {
pattern: "40px 40px, 40px 40px, 20px 20px, 20px 20px",
},
backgroundPosition: {
pattern: "-2px -2px, -2px -2px, -1px -1px, -1px -1px",
},
},
},
plugins: [],
};