Update app.py
Browse files
app.py
CHANGED
@@ -258,8 +258,8 @@ def inpaint(image, invert):
|
|
258 |
|
259 |
theme = gr.themes.Soft(
|
260 |
primary_hue="emerald",
|
261 |
-
# neutral_hue=gr.themes.Color(c100="#fce7f3", c200="#fbcfe8", c300="#f9a8d4", c400="#f472b6", c50="#fdf2f8", c500="#9b3b6b", c600="#7f2f53", c700="#641b3a", c800="#5d1431", c900="#361120", c950="#2b0d19"),
|
262 |
radius_size="sm",
|
|
|
263 |
)
|
264 |
|
265 |
css = """
|
@@ -302,7 +302,7 @@ css = """
|
|
302 |
}
|
303 |
"""
|
304 |
|
305 |
-
with gr.Blocks(theme=theme, css=css) as demo:
|
306 |
gr.Markdown(DESCRIPTION, elem_classes="top-description")
|
307 |
with gr.Tab("Canny Edge", elem_id="tab_wrapper", elem_classes="tab_wrapper"):
|
308 |
with gr.Row():
|
|
|
258 |
|
259 |
theme = gr.themes.Soft(
|
260 |
primary_hue="emerald",
|
|
|
261 |
radius_size="sm",
|
262 |
+
neutral_hue=gr.themes.Color(c100="#a6adc8", c200="#9399b2", c300="#7f849c", c400="#6c7086", c50="#cdd6f4", c500="#585b70", c600="#45475a", c700="#313244", c800="#1e1e2e", c900="#181825", c950="#11111b"),
|
263 |
)
|
264 |
|
265 |
css = """
|
|
|
302 |
}
|
303 |
"""
|
304 |
|
305 |
+
with gr.Blocks(theme=theme, css=css, js=javascript.js) as demo:
|
306 |
gr.Markdown(DESCRIPTION, elem_classes="top-description")
|
307 |
with gr.Tab("Canny Edge", elem_id="tab_wrapper", elem_classes="tab_wrapper"):
|
308 |
with gr.Row():
|