Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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=
|
| 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 |
|