ColdSlim commited on
Commit
52096d1
·
verified ·
1 Parent(s): bb5cdff

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +32 -0
tailwind.config.js ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ colors: {
10
+ primary: '#00f0ff',
11
+ secondary: '#7000ff',
12
+ dark: '#0a0a12',
13
+ surface: '#12121f',
14
+ },
15
+ fontFamily: {
16
+ sans: ['Inter', 'sans-serif'],
17
+ mono: ['JetBrains Mono', 'monospace'],
18
+ },
19
+ animation: {
20
+ 'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
21
+ 'float': 'float 6s ease-in-out infinite',
22
+ },
23
+ keyframes: {
24
+ float: {
25
+ '0%, 100%': { transform: 'translateY(0)' },
26
+ '50%': { transform: 'translateY(-20px)' },
27
+ }
28
+ }
29
+ },
30
+ },
31
+ plugins: [],
32
+ }