- tailwind.config.js: add borderRadius (3xl/4xl), glow box-shadows, smooth transition - global.css: hero-upload-zone uses rounded-3xl, scale on drag, enhanced hover lift - HeroUploadZone: UploadCloud icon, group hover animations, rounded-full CTAs, improved layout - HomePage: animated badge pill, larger heading, improved gradient Agent-Logs-Url: https://github.com/aborayan2022/SaaS-PDF/sessions/a233a493-2fcf-4025-bd7f-68446c105e28 Co-authored-by: aborayan2022 <119736744+aborayan2022@users.noreply.github.com>
56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
50: '#eff6ff',
|
|
100: '#dbeafe',
|
|
200: '#bfdbfe',
|
|
300: '#93c5fd',
|
|
400: '#60a5fa',
|
|
500: '#3b82f6',
|
|
600: '#2563eb',
|
|
700: '#1d4ed8',
|
|
800: '#1e40af',
|
|
900: '#1e3a8a',
|
|
950: '#172554',
|
|
},
|
|
accent: {
|
|
50: '#fdf4ff',
|
|
100: '#fae8ff',
|
|
200: '#f5d0fe',
|
|
300: '#f0abfc',
|
|
400: '#e879f9',
|
|
500: '#d946ef',
|
|
600: '#c026d3',
|
|
700: '#a21caf',
|
|
800: '#86198f',
|
|
900: '#701a75',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'Tajawal', 'system-ui', 'sans-serif'],
|
|
arabic: ['Tajawal', 'Inter', 'sans-serif'],
|
|
},
|
|
borderRadius: {
|
|
'3xl': '1.5rem',
|
|
'4xl': '2rem',
|
|
},
|
|
boxShadow: {
|
|
'glow': '0 0 20px -4px rgba(59, 130, 246, 0.4)',
|
|
'glow-lg': '0 0 40px -8px rgba(59, 130, 246, 0.5)',
|
|
},
|
|
transitionTimingFunction: {
|
|
'smooth': 'cubic-bezier(0.4, 0, 0.2, 1)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|