Spaces:
Running
Running
Add theme
Browse files
app.py
CHANGED
@@ -42,7 +42,12 @@ def generate(
|
|
42 |
|
43 |
with gr.Blocks(
|
44 |
title="Text-to-image UI",
|
45 |
-
css="footer {display: none !important}"
|
|
|
|
|
|
|
|
|
|
|
46 |
) as app:
|
47 |
gr.Markdown("# Text-to-Image UI")
|
48 |
with gr.Tab("🎨 Generate"):
|
|
|
42 |
|
43 |
with gr.Blocks(
|
44 |
title="Text-to-image UI",
|
45 |
+
css="footer {display: none !important}",
|
46 |
+
theme=gr.themes.Base(
|
47 |
+
primary_hue="red",
|
48 |
+
secondary_hue="fuchsia",
|
49 |
+
neutral_hue="neutral"
|
50 |
+
)
|
51 |
) as app:
|
52 |
gr.Markdown("# Text-to-Image UI")
|
53 |
with gr.Tab("🎨 Generate"):
|