Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -78,20 +78,22 @@ Note: The image of the women is generated using AI, therefore it does not resemb
|
|
78 |
"""
|
79 |
|
80 |
theme = gr.themes.Soft(
|
|
|
|
|
81 |
font=[gr.themes.GoogleFont('Source Code Pro'), gr.themes.GoogleFont('Public Sans'), 'system-ui', 'sans-serif'],
|
82 |
)
|
83 |
-
js_func = """
|
84 |
-
function refresh() {
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
}
|
91 |
-
"""
|
92 |
-
|
93 |
-
|
94 |
-
with gr.Blocks(
|
95 |
gr.Markdown(_MARKDOWN_)
|
96 |
with gr.Row():
|
97 |
with gr.Column():
|
|
|
78 |
"""
|
79 |
|
80 |
theme = gr.themes.Soft(
|
81 |
+
primary_hue="blue",
|
82 |
+
secondary_hue="purple",
|
83 |
font=[gr.themes.GoogleFont('Source Code Pro'), gr.themes.GoogleFont('Public Sans'), 'system-ui', 'sans-serif'],
|
84 |
)
|
85 |
+
# js_func = """
|
86 |
+
# function refresh() {
|
87 |
+
# const url = new URL(window.location);
|
88 |
+
# if (url.searchParams.get('__theme') !== 'dark') {
|
89 |
+
# url.searchParams.set('__theme', 'dark');
|
90 |
+
# window.location.href = url.href;
|
91 |
+
# }
|
92 |
+
# }
|
93 |
+
# """
|
94 |
+
|
95 |
+
|
96 |
+
with gr.Blocks(title="ToonMagev2", theme = theme) as SAK:
|
97 |
gr.Markdown(_MARKDOWN_)
|
98 |
with gr.Row():
|
99 |
with gr.Column():
|