derek-thomas HF staff commited on
Commit
921c123
1 Parent(s): bde7795

Updating theme to custom

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ def log_file_to_html_string():
16
  return html_content
17
 
18
 
19
- with gr.Blocks(theme=gr.themes.Soft()) as demo:
20
  name = gr.Markdown("# Reddit Scraper")
21
  output = gr.HTML(log_file_to_html_string, every=1)
22
 
 
16
  return html_content
17
 
18
 
19
+ with gr.Blocks(theme=gr.themes.Default(primary_hue="slate", secondary_hue="amber")) as demo:
20
  name = gr.Markdown("# Reddit Scraper")
21
  output = gr.HTML(log_file_to_html_string, every=1)
22