Spaces:
Sleeping
Sleeping
gera commited on
Commit ·
61e85cd
1
Parent(s): 4baeaea
Theme
Browse files
app.py
CHANGED
|
@@ -117,10 +117,16 @@ AUTH_JS = """function auth_js(token, state) {
|
|
| 117 |
}
|
| 118 |
"""
|
| 119 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 120 |
|
| 121 |
with gr.Blocks(
|
| 122 |
title="Dr. Luis Chiozza - Medicina y Psicoanalisis",
|
| 123 |
-
fill_height=True,
|
|
|
|
| 124 |
theme=gr.themes.Base()) as demo:
|
| 125 |
state = new_state()
|
| 126 |
|
|
|
|
| 117 |
}
|
| 118 |
"""
|
| 119 |
|
| 120 |
+
theme = gr.Theme.from_hub("freddyaboulton/dracula_revamped@0.3.9")
|
| 121 |
+
theme.set(
|
| 122 |
+
color_accent_soft="#6272a4",
|
| 123 |
+
button_primary_text_color="*button_secondary_text_color",
|
| 124 |
+
button_primary_background_fill="*button_secondary_background_fill")
|
| 125 |
|
| 126 |
with gr.Blocks(
|
| 127 |
title="Dr. Luis Chiozza - Medicina y Psicoanalisis",
|
| 128 |
+
fill_height=True,
|
| 129 |
+
theme=theme,
|
| 130 |
theme=gr.themes.Base()) as demo:
|
| 131 |
state = new_state()
|
| 132 |
|