BSJ2004 commited on
Commit
11a652d
·
verified ·
1 Parent(s): a1262ff

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +37 -0
tailwind.config.js ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ module.exports = {
2
+ content: [
3
+ "./app/**/*.{js,ts,jsx,tsx,mdx}",
4
+ "./pages/**/*.{js,ts,jsx,tsx,mdx}",
5
+ "./components/**/*.{js,ts,jsx,tsx,mdx}",
6
+
7
+ "./src/**/*.{js,ts,jsx,tsx,mdx}",
8
+ ],
9
+ theme: {
10
+ extend: {
11
+ colors: {
12
+ background: "var(--background)",
13
+ foreground: "var(--foreground)",
14
+ },
15
+ animation: {
16
+ 'float': 'float 6s ease-in-out infinite',
17
+ 'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
18
+ 'gradient': 'gradient 8s ease infinite',
19
+ },
20
+ keyframes: {
21
+ float: {
22
+ '0%, 100%': { transform: 'translateY(0)' },
23
+ '50%': { transform: 'translateY(-20px)' },
24
+ },
25
+ gradient: {
26
+ '0%, 100%': { 'background-size': '200% 200%', 'background-position': 'left center' },
27
+ '50%': { 'background-size': '200% 200%', 'background-position': 'right center' },
28
+ }
29
+ },
30
+ backgroundImage: {
31
+ 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
32
+ 'hero-pattern': "url('/hero-bg.jpg')",
33
+ },
34
+ },
35
+ },
36
+ plugins: [],
37
+ }