Rooni commited on
Commit
1f5df60
1 Parent(s): 092c136

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,5 +1,5 @@
1
  import time
2
-
3
  import gradio as gr
4
 
5
 
@@ -7,7 +7,7 @@ from gradio.themes.utils.theme_dropdown import create_theme_dropdown
7
 
8
  dropdown, js = create_theme_dropdown()
9
 
10
- THEME = 'YTheme/TehnoX'
11
 
12
  with gr.Blocks(theme=THEME) as demo:
13
  with gr.Row().style(equal_height=True):
 
1
  import time
2
+ import os
3
  import gradio as gr
4
 
5
 
 
7
 
8
  dropdown, js = create_theme_dropdown()
9
 
10
+ THEME = os.getenv("THEME")
11
 
12
  with gr.Blocks(theme=THEME) as demo:
13
  with gr.Row().style(equal_height=True):