Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -214,8 +214,13 @@ def generate(
|
|
214 |
generator=generator,
|
215 |
output_type="pil",
|
216 |
).images[0]
|
217 |
-
|
218 |
-
|
|
|
|
|
|
|
|
|
|
|
219 |
gr.HTML(
|
220 |
"<p><center>π For any additional support, join our <a href='https://discord.gg/JprjXpjt9K'>Discord</a></center></p>"
|
221 |
)
|
|
|
214 |
generator=generator,
|
215 |
output_type="pil",
|
216 |
).images[0]
|
217 |
+
|
218 |
+
theme = gr.themes.Monochrome(
|
219 |
+
text_size=gr.themes.Size(lg="18px", md="15px", sm="13px", xl="22px", xs="12px", xxl="24px", xxs="9px"),
|
220 |
+
font=[gr.themes.GoogleFont('Source Sans Pro'), 'ui-sans-serif', 'system-ui', 'sans-serif'],
|
221 |
+
)
|
222 |
+
|
223 |
+
with gr.Blocks(theme=theme, css="style.css") as demo:
|
224 |
gr.HTML(
|
225 |
"<p><center>π For any additional support, join our <a href='https://discord.gg/JprjXpjt9K'>Discord</a></center></p>"
|
226 |
)
|