File size: 754 Bytes
04e75ed | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
def get_gradio_style():
return """
body {
background-color: #1e1e1e;
color: white;
}
.gradio-container {
background-color: #1e1e1e;
}
.gr-chat-message.user, .gr-chat-message.assistant {
background-color: #2b2b2b;
color: white;
border-radius: 8px;
padding: 5px 10px;
margin: 5px 0;
}
.gr-button {
background-color: #444444;
color: white;
}
.gr-textbox textarea {
background-color: #2b2b2b;
color: white;
}
span.md h2{
color:white;
}
#component-279{
height: 150px;
}
span.svelte-7ddecg p{
color:white;
}
span.chatbot p{
color: black;
font-weight: bold;
font-style: italic;
font-family: "Arial", sans-serif;
}
textarea.svelte-1ae7ssi{
background: whitesmoke;
font-weight: bold;
}
""" |