removed tailwind animate
Browse files- Remotion-app/tailwind.config.js +95 -96
Remotion-app/tailwind.config.js
CHANGED
@@ -1,98 +1,97 @@
|
|
1 |
/** @type {import('tailwindcss').Config} */
|
2 |
module.exports = {
|
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 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
}
|
|
|
1 |
/** @type {import('tailwindcss').Config} */
|
2 |
module.exports = {
|
3 |
+
darkMode: ['class'],
|
4 |
+
content: [
|
5 |
+
'./pages/**/*.{js,jsx}',
|
6 |
+
'./components/**/*.{js,jsx}',
|
7 |
+
'./app/**/*.{js,jsx}',
|
8 |
+
'./src/**/*.{js,jsx}',
|
9 |
+
],
|
10 |
+
prefix: '',
|
11 |
+
theme: {
|
12 |
+
container: {
|
13 |
+
center: true,
|
14 |
+
padding: '2rem',
|
15 |
+
screens: {
|
16 |
+
'2xl': '1400px',
|
17 |
+
},
|
18 |
+
},
|
19 |
+
backgroundImage: {
|
20 |
+
'glow-lines':
|
21 |
+
'linear-gradient(var(--direction),#9d9bf2 0.43%,#7877c6 14.11%,rgba(120,119,198,0) 62.95%)',
|
22 |
+
},
|
23 |
+
extend: {
|
24 |
+
colors: {
|
25 |
+
border: 'hsl(var(--border))',
|
26 |
+
input: 'hsl(var(--input))',
|
27 |
+
ring: 'hsl(var(--ring))',
|
28 |
+
background: 'hsl(var(--background))',
|
29 |
+
foreground: 'hsl(var(--foreground))',
|
30 |
+
primary: {
|
31 |
+
DEFAULT: 'hsl(var(--primary))',
|
32 |
+
foreground: 'hsl(var(--primary-foreground))',
|
33 |
+
},
|
34 |
+
secondary: {
|
35 |
+
DEFAULT: 'hsl(var(--secondary))',
|
36 |
+
foreground: 'hsl(var(--secondary-foreground))',
|
37 |
+
},
|
38 |
+
destructive: {
|
39 |
+
DEFAULT: 'hsl(var(--destructive))',
|
40 |
+
foreground: 'hsl(var(--destructive-foreground))',
|
41 |
+
},
|
42 |
+
muted: {
|
43 |
+
DEFAULT: 'hsl(var(--muted))',
|
44 |
+
foreground: 'hsl(var(--muted-foreground))',
|
45 |
+
},
|
46 |
+
accent: {
|
47 |
+
DEFAULT: 'hsl(var(--accent))',
|
48 |
+
foreground: 'hsl(var(--accent-foreground))',
|
49 |
+
},
|
50 |
+
popover: {
|
51 |
+
DEFAULT: 'hsl(var(--popover))',
|
52 |
+
foreground: 'hsl(var(--popover-foreground))',
|
53 |
+
},
|
54 |
+
card: {
|
55 |
+
DEFAULT: 'hsl(var(--card))',
|
56 |
+
foreground: 'hsl(var(--card-foreground))',
|
57 |
+
},
|
58 |
+
},
|
59 |
+
borderRadius: {
|
60 |
+
lg: 'var(--radius)',
|
61 |
+
md: 'calc(var(--radius) - 2px)',
|
62 |
+
sm: 'calc(var(--radius) - 4px)',
|
63 |
+
},
|
64 |
+
keyframes: {
|
65 |
+
'glow-line-horizontal': {
|
66 |
+
'0%': {opacity: 0, transform: 'translateX(0)'},
|
67 |
+
'5%': {opacity: 1, transform: 'translateX(0)'},
|
68 |
+
'90%': {opacity: 1},
|
69 |
+
'100%': {opacity: 0, transform: 'translateX(min(60vw, 45rem))'},
|
70 |
+
},
|
71 |
+
'glow-line-vertical': {
|
72 |
+
'0%': {opacity: 0, transform: 'translateY(0)'},
|
73 |
+
'5%': {opacity: 1, transform: 'translateY(0)'},
|
74 |
+
'90%': {opacity: 1},
|
75 |
+
'100%': {opacity: 0, transform: 'translateY(min(21vw, 45rem))'},
|
76 |
+
},
|
77 |
+
'accordion-down': {
|
78 |
+
from: {height: '0'},
|
79 |
+
to: {height: 'var(--radix-accordion-content-height)'},
|
80 |
+
},
|
81 |
+
'accordion-up': {
|
82 |
+
from: {height: 'var(--radix-accordion-content-height)'},
|
83 |
+
to: {height: '0'},
|
84 |
+
},
|
85 |
+
},
|
86 |
+
animation: {
|
87 |
+
'accordion-down': 'accordion-down 0.2s ease-out',
|
88 |
+
'accordion-up': 'accordion-up 0.2s ease-out',
|
89 |
+
'glow-line-horizontal':
|
90 |
+
'glow-line-horizontal var(--animation-duration) ease-in forwards',
|
91 |
+
'glow-line-vertical':
|
92 |
+
'glow-line-vertical var(--animation-duration) ease-in forwards',
|
93 |
+
},
|
94 |
+
},
|
95 |
+
},
|
96 |
+
// plugins: [require("tailwindcss-animate")],
|
97 |
+
};
|
|