chatbot / styles.py
Tafar's picture
Update styles.py
2944216
raw
history blame contribute delete
432 Bytes
def get_chat_interface_style():
return {
"background-color": "#f0f0f0",
"padding": "20px",
"border-radius": "10px"
}
def get_textbox_style():
return {
"background-color": "#e6e6e6",
"padding": "10px",
"border-radius": "5px"
}
def get_chatbox_style():
return {
"background-color": "#ffffff",
"padding": "10px",
"border-radius": "5px"
}