24 lines
618 B
Python
24 lines
618 B
Python
"""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',
|
|
}
|