Update app.py
Browse files
app.py
CHANGED
@@ -125,8 +125,10 @@ def play_video(youtube_url):
|
|
125 |
AUDIO_EXAMPLES = glob.glob('examples/*.*', recursive=True)
|
126 |
YOUTUBE_EXAMPLES = ["https://www.youtube.com/watch?v=vMboypSkj3c"]
|
127 |
|
128 |
-
theme = 'gradio/dracula_revamped' #'Insuz/Mocha' #gr.themes.Soft()
|
129 |
-
with gr.Blocks(theme=theme) as demo:
|
|
|
|
|
130 |
|
131 |
with gr.Row():
|
132 |
with gr.Column(scale=10):
|
|
|
125 |
AUDIO_EXAMPLES = glob.glob('examples/*.*', recursive=True)
|
126 |
YOUTUBE_EXAMPLES = ["https://www.youtube.com/watch?v=vMboypSkj3c"]
|
127 |
|
128 |
+
# theme = 'gradio/dracula_revamped' #'Insuz/Mocha' #gr.themes.Soft()
|
129 |
+
# with gr.Blocks(theme=theme) as demo:
|
130 |
+
theme = gr.Theme.from_hub("gradio/dracula_revamped")
|
131 |
+
with gr.Blocks(theme=theme(text_size="sm"))
|
132 |
|
133 |
with gr.Row():
|
134 |
with gr.Column(scale=10):
|