Spaces:
Sleeping
Sleeping
Upload tailwind.config.js with huggingface_hub
Browse files- tailwind.config.js +38 -0
tailwind.config.js
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
serif: ['var(--font-playfair)', 'serif'],
|
| 11 |
+
mono: ['var(--font-roboto-mono)', 'monospace'],
|
| 12 |
+
sans: ['var(--font-inter)', 'sans-serif'],
|
| 13 |
+
},
|
| 14 |
+
colors: {
|
| 15 |
+
'void': '#050505',
|
| 16 |
+
'charcoal': '#0a0a0a',
|
| 17 |
+
'slate-900': '#0f172a',
|
| 18 |
+
'neon': '#ffffff',
|
| 19 |
+
'faint': '#525252',
|
| 20 |
+
},
|
| 21 |
+
backgroundImage: {
|
| 22 |
+
'noise': "url('data:image/svg+xml,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.65%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22 opacity=%220.05%22/%3E%3C/svg%3E')",
|
| 23 |
+
},
|
| 24 |
+
animation: {
|
| 25 |
+
'spin-slow': 'spin 20s linear infinite',
|
| 26 |
+
'pulse-fast': 'pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite',
|
| 27 |
+
'float': 'float 6s ease-in-out infinite',
|
| 28 |
+
},
|
| 29 |
+
keyframes: {
|
| 30 |
+
float: {
|
| 31 |
+
'0%, 100%': { transform: 'translateY(0)' },
|
| 32 |
+
'50%': { transform: 'translateY(-20px)' },
|
| 33 |
+
}
|
| 34 |
+
}
|
| 35 |
+
},
|
| 36 |
+
},
|
| 37 |
+
plugins: [],
|
| 38 |
+
}
|