collabrix/frontend/tailwind.config.js
DGSoft 93b98cfb5c Initial commit: Team Chat System with Code Snippet Library
- Complete chat application similar to Microsoft Teams
- Code snippet library with syntax highlighting
- Real-time messaging with WebSockets
- File upload with Office integration
- Department-based permissions
- Dark/Light theme support
- Production deployment with SSL/Reverse Proxy
- Docker containerization
- PostgreSQL database with SQLModel ORM
2025-12-09 22:25:03 +01:00

37 lines
669 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#005b9f',
light: '#6366f1',
dark: '#4f46e5'
},
success: {
DEFAULT: '#28a745',
},
warning: {
DEFAULT: '#ffa500',
},
danger: {
DEFAULT: '#dc3545',
},
info: {
DEFAULT: '#17a2b8',
},
background: {
light: '#f8f9fa',
card: '#ffffff',
}
}
},
},
plugins: [],
}