Inital Code

This commit is contained in:
2025-11-24 15:39:05 +00:00
parent b7c419758a
commit 30b7308b6a
13 changed files with 1558 additions and 2 deletions

23
chatapp/constants.py Normal file
View File

@@ -0,0 +1,23 @@
"""Color palettes and constants for the chat application."""
# Color palette for users
USER_COLORS = [
"#FF6B6B", "#4ECDC4", "#45B7D1", "#FFA07A", "#98D8C8", "#F7DC6F",
"#BB8FCE", "#85C1E2", "#F8B739", "#52B788", "#E63946", "#06FFA5",
"#FB5607", "#8338EC", "#3A86FF", "#FF006E", "#FFBE0B", "#06D6A0",
"#EF476F", "#118AB2",
]
# System colors
COLORS = {
'system': '#FFA500',
'error': '#FF4444',
'success': '#00FF00',
'info': '#4A9EFF',
'whisper': '#FF00FF',
'command': '#00FFFF',
'warning': '#FFFF00',
'channel': '#00FF00',
'dm': '#FF00FF',
'help': '#00FF00',
}