codeboosterstech commited on
Commit
335a5e9
·
verified ·
1 Parent(s): 4141074

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -172,9 +172,17 @@ def create_app():
172
  """Create the Gradio application interface"""
173
  app = SpaceCreatorApp()
174
 
 
 
 
 
 
 
 
 
175
  with gr.Blocks(
176
  title="Hugging Face Space Creator",
177
- theme=gr.themes.Soft(primary_hue="yellow"),
178
  css="static/css/style.css"
179
  ) as demo:
180
 
 
172
  """Create the Gradio application interface"""
173
  app = SpaceCreatorApp()
174
 
175
+ # Use a simple, clean theme
176
+ theme = gr.themes.Base(
177
+ primary_hue="blue",
178
+ secondary_hue="gray",
179
+ neutral_hue="gray",
180
+ font=["Inter", "sans-serif"]
181
+ )
182
+
183
  with gr.Blocks(
184
  title="Hugging Face Space Creator",
185
+ theme=theme,
186
  css="static/css/style.css"
187
  ) as demo:
188