habulaj commited on
Commit
f8301d9
β€’
1 Parent(s): 5ce5cb0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -214,8 +214,13 @@ def generate(
214
  generator=generator,
215
  output_type="pil",
216
  ).images[0]
217
-
218
- with gr.Blocks(theme=gr.themes.Soft(), css="style.css") as demo:
 
 
 
 
 
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
  )