Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -483,14 +483,31 @@ with gr.Blocks() as interface:
|
|
483 |
)
|
484 |
gr.HTML("""
|
485 |
<style>
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
494 |
</style>
|
495 |
""")
|
496 |
|
@@ -530,4 +547,4 @@ with gr.Blocks() as interface:
|
|
530 |
# """)
|
531 |
|
532 |
|
533 |
-
interface.launch(share=True,debug=True
|
|
|
483 |
)
|
484 |
gr.HTML("""
|
485 |
<style>
|
486 |
+
body, html {
|
487 |
+
background-color: #121212 !important;
|
488 |
+
color: #ffffff !important;
|
489 |
+
}
|
490 |
+
|
491 |
+
.gradio-container, .gr-block, .gr-box, textarea, input, select, .prose, .prose * {
|
492 |
+
background-color: #1e1e1e !important;
|
493 |
+
color: #ffffff !important;
|
494 |
+
border-color: #333 !important;
|
495 |
+
}
|
496 |
+
|
497 |
+
textarea::placeholder,
|
498 |
+
input::placeholder {
|
499 |
+
color: #aaa !important;
|
500 |
+
}
|
501 |
+
|
502 |
+
button {
|
503 |
+
background-color: #2d2d2d !important;
|
504 |
+
color: #fff !important;
|
505 |
+
border: 1px solid #444 !important;
|
506 |
+
}
|
507 |
+
|
508 |
+
a {
|
509 |
+
color: #4ea1f3 !important;
|
510 |
+
}
|
511 |
</style>
|
512 |
""")
|
513 |
|
|
|
547 |
# """)
|
548 |
|
549 |
|
550 |
+
interface.launch(share=True,debug=True)
|