runway-video/tailwind.config.js
DJP 76bcaccf46 Initial commit: Runway Gen4 Web App
- Complete web application for video generation using Runway Gen4 API
- Frontend: HTML5, CSS3, JavaScript with Tailwind CSS styling
- Backend: PHP API integration with async job processing
- Features: Image upload, drag & drop, progress tracking, dark mode
- Supports multiple aspect ratios, duration settings, and seed control
- Fixed MAMP compatibility issues with backend file access
- Comprehensive documentation and troubleshooting guide

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-22 14:37:07 -04:00

26 lines
No EOL
514 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./public/**/*.{html,js}",
"./public/index.html",
"./public/js/script.js"
],
theme: {
extend: {
colors: {
'orange': {
50: 'rgba(252, 151, 41, 0.1)',
500: '#fc9729',
600: '#fc9729',
700: '#df8925',
800: '#fc9729',
}
},
fontFamily: {
'sans': ['Montserrat', 'sans-serif'],
}
},
},
plugins: [],
darkMode: 'class'
}