anycoder-cce82de9 / tailwind.config.js
SherlockRamos's picture
Upload tailwind.config.js with huggingface_hub
35df161 verified
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
primary: {
50: '#f0f4ff',
100: '#dbe7ff',
200: '#b9d2ff',
300: '#91b4ff',
400: '#638aff',
500: '#3b6fff',
600: '#2651e6',
700: '#1e3cc4',
800: '#1b349a',
900: '#1a2f7a',
950: '#0f1b4a',
},
accent: {
50: '#fefce8',
100: '#fef3c7',
200: '#fde68a',
300: '#fcd34d',
400: '#fbbf24',
500: '#f59e0b',
600: '#d97706',
700: '#b45309',
800: '#92400e',
900: '#78350f',
},
gray: {
25: '#fcfcfd',
50: '#f9fafb',
100: '#f3f4f6',
200: '#e5e7eb',
300: '#d1d5db',
400: '#9ca3af',
500: '#6b7280',
600: '#4b5563',
700: '#374151',
800: '#1f2937',
900: '#111827',
950: '#030712',
}
},
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif'],
'display': ['Playfair Display', 'serif'],
},
spacing: {
'18': '4.5rem',
'88': '22rem',
'128': '32rem',
},
borderRadius: {
'xl': '0.75rem',
'2xl': '1rem',
'3xl': '1.5rem',
},
boxShadow: {
'soft': '0 2px 15px 0 rgba(0, 0, 0, 0.08)',
'medium': '0 4px 25px 0 rgba(0, 0, 0, 0.1)',
'hard': '0 8px 30px 0 rgba(0, 0, 0, 0.12)',
},
animation: {
'fade-in': 'fadeIn 0.5s ease-in-out',
'slide-up': 'slideUp 0.6s ease-out',
'scale-in': 'scaleIn 0.4s ease-out',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideUp: {
'0%': { transform: 'translateY(20px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
scaleIn: {
'0%': { transform: 'scale(0.95)', opacity: '0' },
'100%': { transform: 'scale(1)', opacity: '1' },
},
}
},
},
plugins: [],
}