mirror of
https://github.com/OHV-IT/collabrix.git
synced 2025-12-15 16:48:36 +01:00
- 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
37 lines
669 B
JavaScript
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: [],
|
|
}
|