IamVicky111 commited on
Commit
3e3eaa9
·
verified ·
1 Parent(s): 5117b49

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +40 -0
tailwind.config.js ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /** @type {import('tailwindcss').Config} */
2
+ module.exports = {
3
+ content: [
4
+ './pages/**/*.{js,jsx,ts,tsx}',
5
+ './components/**/*.{js,jsx,ts,tsx}',
6
+ ],
7
+ theme: {
8
+ extend: {
9
+ colors: {
10
+ primary: {
11
+ 50: '#f0f9ff',
12
+ 100: '#e0f2fe',
13
+ 200: '#bae6fd',
14
+ 300: '#7dd3fc',
15
+ 400: '#38bdf8',
16
+ 500: '#0ea5e9',
17
+ 600: '#0284c7',
18
+ 700: '#0369a1',
19
+ 800: '#075985',
20
+ 900: '#0c4a6e',
21
+ },
22
+ accent: {
23
+ 500: '#22c55e',
24
+ 600: '#16a34a',
25
+ }
26
+ },
27
+ animation: {
28
+ 'float': 'float 6s ease-in-out infinite',
29
+ 'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
30
+ },
31
+ keyframes: {
32
+ float: {
33
+ '0%, 100%': { transform: 'translateY(0px)' },
34
+ '50%': { transform: 'translateY(-20px)' },
35
+ }
36
+ }
37
+ },
38
+ },
39
+ plugins: [],
40
+ }