Spaces:
Sleeping
Sleeping
Himank Jain
commited on
Commit
·
219e452
1
Parent(s):
39e3e15
UI changes
Browse files
app.py
CHANGED
@@ -83,12 +83,21 @@ custom_theme = gr.themes.Base(
|
|
83 |
border_color_accent="*neutral_700",
|
84 |
button_primary_background_fill="*neutral_800",
|
85 |
button_primary_text_color="#ffffff",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
)
|
87 |
|
88 |
with gr.Blocks(theme=custom_theme) as demo:
|
89 |
with gr.Row():
|
90 |
-
gr.
|
91 |
-
|
|
|
|
|
92 |
gr.Markdown("Chat with the fine-tuned multimodal Eden using text, audio, or image inputs.")
|
93 |
|
94 |
chatbot = gr.Chatbot(
|
|
|
83 |
border_color_accent="*neutral_700",
|
84 |
button_primary_background_fill="*neutral_800",
|
85 |
button_primary_text_color="#ffffff",
|
86 |
+
# Add these lines to ensure all text is white
|
87 |
+
block_title_text_color="#ffffff",
|
88 |
+
block_label_text_color="#ffffff",
|
89 |
+
input_text_color="#ffffff",
|
90 |
+
output_text_color="#ffffff",
|
91 |
+
chatbot_code_background="#333333",
|
92 |
+
chatbot_code_color="#ffffff",
|
93 |
)
|
94 |
|
95 |
with gr.Blocks(theme=custom_theme) as demo:
|
96 |
with gr.Row():
|
97 |
+
with gr.Column(scale=1):
|
98 |
+
gr.Image("static/eden.png", show_label=False, container=False, height=50, width=50, interactive=False)
|
99 |
+
with gr.Column(scale=11):
|
100 |
+
gr.Markdown("# Eden")
|
101 |
gr.Markdown("Chat with the fine-tuned multimodal Eden using text, audio, or image inputs.")
|
102 |
|
103 |
chatbot = gr.Chatbot(
|