durukan commited on
Commit
e310b32
·
verified ·
1 Parent(s): 35530f9

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +31 -0
tailwind.config.js ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /** @type {import('tailwindcss').Config} */
2
+ module.exports = {
3
+ content: [
4
+ './pages/**/*.{js,ts,jsx,tsx}',
5
+ './components/**/*.{js,ts,jsx,tsx}',
6
+ ],
7
+ theme: {
8
+ extend: {
9
+ colors: {
10
+ primary: '#6366f1',
11
+ secondary: '#8b5cf6',
12
+ accent: '#ec4899',
13
+ },
14
+ animation: {
15
+ 'fade-in': 'fadeIn 0.5s ease-in-out',
16
+ 'slide-up': 'slideUp 0.5s ease-in-out',
17
+ },
18
+ keyframes: {
19
+ fadeIn: {
20
+ '0%': { opacity: '0' },
21
+ '100%': { opacity: '1' },
22
+ },
23
+ slideUp: {
24
+ '0%': { transform: 'translateY(20px)', opacity: '0' },
25
+ '100%': { transform: 'translateY(0)', opacity: '1' },
26
+ },
27
+ },
28
+ },
29
+ },
30
+ plugins: [],
31
+ };