anycoder-8d59f3e0 / tailwind.config.js
Cdlane4998's picture
Upload tailwind.config.js with huggingface_hub
5827410 verified
Raw
History Blame Contribute Delete
1.96 kB
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,jsx}',
'./components/**/*.{js,jsx}',
],
theme: {
extend: {
colors: {
brand: {
50: '#f0f0ff',
100: '#e0e0ff',
200: '#c4b5fd',
300: '#a78bfa',
400: '#8b5cf6',
500: '#7c3aed',
600: '#6d28d9',
700: '#5b21b6',
800: '#4c1d95',
900: '#3b0764',
},
surface: {
50: '#fafafa',
100: '#f4f4f5',
200: '#e4e4e7',
300: '#d4d4d8',
700: '#3f3f46',
800: '#27272a',
850: '#1e1e22',
900: '#18181b',
950: '#0f0f11',
}
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
animation: {
'float': 'float 6s ease-in-out infinite',
'glow': 'glow 2s ease-in-out infinite alternate',
'slide-up': 'slideUp 0.5s ease-out',
'fade-in': 'fadeIn 0.6s ease-out',
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'typing': 'typing 3s steps(30) infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-20px)' },
},
glow: {
'0%': { boxShadow: '0 0 20px rgba(124, 58, 237, 0.3)' },
'100%': { boxShadow: '0 0 40px rgba(124, 58, 237, 0.6)' },
},
slideUp: {
'0%': { transform: 'translateY(20px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
typing: {
'0%': { width: '0' },
'50%': { width: '100%' },
'100%': { width: '0' },
},
},
},
},
plugins: [],
}