VyLala commited on
Commit
241a413
·
verified ·
1 Parent(s): a3f7fdf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +26 -9
app.py CHANGED
@@ -483,14 +483,31 @@ with gr.Blocks() as interface:
483
  )
484
  gr.HTML("""
485
  <style>
486
- body, .gradio-container {
487
- background-color: #1e1e1e !important;
488
- color: #f1f1f1 !important;
489
- }
490
- table {
491
- background-color: #1e1e1e !important;
492
- color: #f1f1f1 !important;
493
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
494
  </style>
495
  """)
496
 
@@ -530,4 +547,4 @@ with gr.Blocks() as interface:
530
  # """)
531
 
532
 
533
- interface.launch(share=True,debug=True, theme=gr.themes.Base().set_dark_mode())
 
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)