-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (49 loc) · 1.16 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/flowbite-react/**/*.js",
"./pages/**/*.{ts,tsx}",
"./public/**/*.html",
],
theme: {
extend: {
colors: {
primaryYellow: "#fbfad3",
primaryGreen: "#c6e377",
secondaryGreen: "#729d39",
terciaryGreen: "#36622b",
oceanGreen: "#6fc4a4",
minimalPink: "#f7859b",
},
backgroundColor: {
"gradient-tr":
"linear-gradient(to top right, #fbfad3, #c6e377, #729d39, #36622b, #6fc4a4, #f7859b)",
},
},
keyframes: {
levitate: {
"0%, 100%": {
transform: "translateY(0)",
},
"50%": {
transform: "translateY(-5px)",
},
},
spin: {
"0%": {
transform: "rotate(0deg)",
},
"100%": {
transform: "rotate(360deg)",
},
},
},
animation: {
levitate: "levitate 3s ease-in-out infinite",
spin: "spin 1s linear infinite",
},
},
plugins: [require("flowbite/plugin")],
}