Mehdi commited on
Commit
f844fdf
·
verified ·
1 Parent(s): aab1c2b

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +62 -0
tailwind.config.js ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /** @type {import('tailwindcss').Config} */
2
+ module.exports = {
3
+ content: [
4
+ './pages/**/*.{js,ts,jsx,tsx,mdx}',
5
+ './components/**/*.{js,ts,jsx,tsx,mdx}',
6
+ ],
7
+ theme: {
8
+ extend: {
9
+ fontFamily: {
10
+ sans: ['Vazirmatn', 'sans-serif'],
11
+ },
12
+ colors: {
13
+ primary: {
14
+ 50: '#f0f9ff',
15
+ 100: '#e0f2fe',
16
+ 200: '#bae6fd',
17
+ 300: '#7dd3fc',
18
+ 400: '#38bdf8',
19
+ 500: '#0ea5e9',
20
+ 600: '#0284c7',
21
+ 700: '#0369a1',
22
+ 800: '#075985',
23
+ 900: '#0c4a6e',
24
+ },
25
+ secondary: {
26
+ 50: '#fdf4ff',
27
+ 100: '#fae8ff',
28
+ 200: '#f5d0fe',
29
+ 300: '#f0abfc',
30
+ 400: '#e879f9',
31
+ 500: '#d946ef',
32
+ 600: '#c026d3',
33
+ 700: '#a21caf',
34
+ 800: '#86198f',
35
+ 900: '#701a75',
36
+ },
37
+ },
38
+ animation: {
39
+ 'gradient': 'gradient 15s ease infinite',
40
+ 'float': 'float 6s ease-in-out infinite',
41
+ 'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
42
+ },
43
+ keyframes: {
44
+ gradient: {
45
+ '0%, 100%': {
46
+ 'background-size': '200% 200%',
47
+ 'background-position': 'left center'
48
+ },
49
+ '50%': {
50
+ 'background-size': '200% 200%',
51
+ 'background-position': 'right center'
52
+ }
53
+ },
54
+ float: {
55
+ '0%, 100%': { transform: 'translateY(0px)' },
56
+ '50%': { transform: 'translateY(-20px)' },
57
+ }
58
+ }
59
+ },
60
+ },
61
+ plugins: [],
62
+ }