Spaces:
Sleeping
Sleeping
text_size=gr.themes.sizes.text_lg
Browse files
app.py
CHANGED
@@ -1562,11 +1562,15 @@ english_logs_tab_button_js = """
|
|
1562 |
return true;
|
1563 |
}
|
1564 |
"""
|
1565 |
-
THEME = gr.themes.Glass(
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
)
|
|
|
|
|
|
|
|
|
1570 |
|
1571 |
with gr.Blocks(theme=THEME, css=CSS) as demo:
|
1572 |
|
|
|
1562 |
return true;
|
1563 |
}
|
1564 |
"""
|
1565 |
+
THEME = gr.themes.Glass(
|
1566 |
+
primary_hue=gr.themes.colors.blue,
|
1567 |
+
secondary_hue=gr.themes.colors.orange,
|
1568 |
+
text_size=gr.themes.sizes.text_lg
|
1569 |
+
).set(
|
1570 |
+
button_primary_background_fill="*primary_300",
|
1571 |
+
button_shadow="*block_shadow",
|
1572 |
+
button_shadow_hover="*block_shadow"
|
1573 |
+
)
|
1574 |
|
1575 |
with gr.Blocks(theme=THEME, css=CSS) as demo:
|
1576 |
|