-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
73 lines (73 loc) · 1.36 KB
/
tailwind.config.cjs
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
72
73
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
container: {
padding: {
DEFAULT: '1rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
'2xl': '6rem',
},
},
extend: {
animation: {
text: 'text 5s ease infinite',
motion: 'motion 1000ms ease-out forwards',
"motion-far": 'motion-far 2000ms ease-out forwards 1000ms',
},
keyframes: {
text: {
'0%': {
'background-size': '200% 200%',
'background-position': 'left center',
},
'100%': {
'background-size': '200% 200%',
'background-position': 'right center',
},
},
motion: {
'0%': {
opacity: '0%',
transform: 'translateY(-0.5rem)',
},
'100%': {
opacity: '100%',
transform: 'translateY(0rem)',
},
},
"motion-far": {
'0%': {
opacity: '0%',
transform: 'translateY(-1rem)',
},
'100%': {
opacity: '100%',
transform: 'translateY(0rem)',
},
},
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
dark: {
primary: "#92f7fc",
secondary: "#5fd8d4",
accent: "#fcd34d",
neutral: "#27222A",
"base-100": "#F5F5F5",
info: "#387EE5",
success: "#239F50",
warning: "#F1AE55",
error: "#E77573",
},
},
"winter",
],
},
};