MatteoFasulo commited on
Commit
95dd8ba
·
verified ·
1 Parent(s): 33a1f42

Update with Soft theme

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -73,9 +73,9 @@ def analyze(text):
73
  }
74
 
75
  # -- Build Gradio Dashboard with Blocks
76
- dark_theme = gr.themes.Dark()
77
 
78
- with gr.Blocks(theme=dark_theme, css="""
79
  #result_table td { padding: 8px; font-size: 1rem; }
80
  #header { text-align: center; font-size: 2rem; font-weight: bold; margin-bottom: 10px; }
81
  """) as demo:
 
73
  }
74
 
75
  # -- Build Gradio Dashboard with Blocks
76
+ theme = gr.themes.Soft()
77
 
78
+ with gr.Blocks(theme=theme, css="""
79
  #result_table td { padding: 8px; font-size: 1rem; }
80
  #header { text-align: center; font-size: 2rem; font-weight: bold; margin-bottom: 10px; }
81
  """) as demo: