-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
65 lines (53 loc) · 1.14 KB
/
Copy pathtailwind.config.js
File metadata and controls
65 lines (53 loc) · 1.14 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
animation: {
"bounce-short": "bounces 2s ease-in-out 1",
},
keyframes: {
bounces: {
"0%": {
transform: "scale(1)",
},
"25%": {
transform: "scale(1.15)",
},
"50%": {
transform: "scale(0.85)",
},
"75%": {
transform: "scale(1.15)",
},
"100%": {
transform: "scale(1)",
},
},
},
colors: {
"state-pending": "#FAC25B",
"state-successful": "#5FB927",
"state-failed": "#FF5A46",
},
},
},
daisyui: {
themes: [
{
mytheme: {
primary: "#661AE6",
secondary: "#D926AA",
accent: "#1FB2A5",
neutral: "#191D24",
"base-100": "#2A303C",
info: "#3ABFF8",
success: "#36D399",
warning: "#FBBD23",
error: "#F87272",
},
},
],
},
plugins: [require("daisyui")],
};