remove theme
Browse files
app.py
CHANGED
@@ -19,13 +19,13 @@ client = Client(
|
|
19 |
headers={"Authorization": f"Bearer {API_TOKEN}"},
|
20 |
)
|
21 |
|
22 |
-
theme = gr.themes.Monochrome(
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
)
|
29 |
|
30 |
if HF_TOKEN:
|
31 |
try:
|
@@ -220,9 +220,7 @@ custom_css = """
|
|
220 |
|
221 |
"""
|
222 |
|
223 |
-
|
224 |
-
|
225 |
-
with gr.Blocks(theme=theme, analytics_enabled=False, css=custom_css) as demo:
|
226 |
gr.HTML(title)
|
227 |
|
228 |
with gr.Row():
|
|
|
19 |
headers={"Authorization": f"Bearer {API_TOKEN}"},
|
20 |
)
|
21 |
|
22 |
+
# theme = gr.themes.Monochrome(
|
23 |
+
# primary_hue="indigo",
|
24 |
+
# secondary_hue="blue",
|
25 |
+
# neutral_hue="slate",
|
26 |
+
# radius_size=gr.themes.sizes.radius_sm,
|
27 |
+
# font=[gr.themes.GoogleFont("Open Sans"), "ui-sans-serif", "system-ui", "sans-serif"],
|
28 |
+
# )
|
29 |
|
30 |
if HF_TOKEN:
|
31 |
try:
|
|
|
220 |
|
221 |
"""
|
222 |
|
223 |
+
with gr.Blocks(analytics_enabled=False, css=custom_css) as demo:
|
|
|
|
|
224 |
gr.HTML(title)
|
225 |
|
226 |
with gr.Row():
|