File size: 432 Bytes
4e6323a
2944216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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"
    }