Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,18 +1,18 @@
|
|
| 1 |
import time
|
| 2 |
|
| 3 |
-
from theme_dropdown import create_theme_dropdown
|
| 4 |
|
| 5 |
import gradio as gr
|
| 6 |
|
| 7 |
dropdown, js = create_theme_dropdown()
|
| 8 |
|
| 9 |
-
with gr.Blocks(theme='Tonic/
|
| 10 |
with gr.Row().style(equal_height=True):
|
| 11 |
with gr.Column(scale=10):
|
| 12 |
gr.Markdown(
|
| 13 |
"""
|
| 14 |
-
# Theme preview: `
|
| 15 |
-
To use this theme, set `theme='Tonic/
|
| 16 |
"""
|
| 17 |
)
|
| 18 |
with gr.Column(scale=3):
|
|
|
|
| 1 |
import time
|
| 2 |
|
| 3 |
+
from theme_dropdown import create_theme_dropdown # noqa: F401
|
| 4 |
|
| 5 |
import gradio as gr
|
| 6 |
|
| 7 |
dropdown, js = create_theme_dropdown()
|
| 8 |
|
| 9 |
+
with gr.Blocks(theme='Tonic/greenblast') as demo:
|
| 10 |
with gr.Row().style(equal_height=True):
|
| 11 |
with gr.Column(scale=10):
|
| 12 |
gr.Markdown(
|
| 13 |
"""
|
| 14 |
+
# Theme preview: `greenblast`
|
| 15 |
+
To use this theme, set `theme='Tonic/greenblast'` in `gr.Blocks()` or `gr.Interface()`.
|
| 16 |
"""
|
| 17 |
)
|
| 18 |
with gr.Column(scale=3):
|