Inital Code
This commit is contained in:
23
chatapp/constants.py
Normal file
23
chatapp/constants.py
Normal 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',
|
||||
}
|
||||
Reference in New Issue
Block a user