Open-Generative-AI/tailwind.config.js
Anil Matcha e0efb745d5 feat: Add image generation studio with Muapi API integration
- Add ImageStudio component with prompt input, model/AR/resolution pickers
- Integrate Muapi API client with x-api-key auth and result polling
- Add generation history sidebar with thumbnails and download
- Add AuthModal and SettingsModal for API key management
- Configure Vite proxy for CORS-free API access in development
- Add model definitions with endpoint mappings from schema data
- Add Tailwind CSS styling with dark theme and glassmorphism design
- Add Header component with settings and logout controls
2026-02-12 22:02:20 +05:30

36 lines
1 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#d9ff00',
hover: '#c4e600',
},
'app-bg': '#050505',
'panel-bg': '#0a0a0a',
'card-bg': '#141414',
secondary: '#a1a1aa',
muted: '#52525b',
},
fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
},
borderRadius: {
'xl': '1rem',
'2xl': '1.5rem',
'3xl': '2rem',
},
boxShadow: {
'glow': '0 0 20px rgba(217, 255, 0, 0.4)',
'glow-accent': '0 0 20px rgba(168, 85, 247, 0.4)',
'3xl': '0 35px 60px -15px rgba(0, 0, 0, 0.8)',
}
},
},
plugins: [],
}