jjz5463 commited on
Commit
215f207
·
1 Parent(s): 54d66e1

css update

Browse files
Files changed (1) hide show
  1. app.py +16 -4
app.py CHANGED
@@ -72,13 +72,25 @@ def chat(user_input, history):
72
 
73
  css = """
74
  body {
75
- background-color: black !important;
76
- color: white;
77
  }
78
  .gradio-container {
79
- background-color: black !important;
 
 
 
 
 
 
 
 
 
 
 
80
  }
81
- .chatbox-message, input {
 
82
  color: white !important;
83
  }
84
  """
 
72
 
73
  css = """
74
  body {
75
+ background-color: #121212 !important;
76
+ color: white !important;
77
  }
78
  .gradio-container {
79
+ background-color: #121212 !important;
80
+ color: white !important;
81
+ }
82
+ .chatbox-message, .gr-input, input[type="text"], textarea, .gradio-input, .gradio-output {
83
+ background-color: #1e1e1e !important;
84
+ color: white !important;
85
+ border: 1px solid #333 !important;
86
+ }
87
+ button {
88
+ background-color: #333 !important;
89
+ color: white !important;
90
+ border: 1px solid #555 !important;
91
  }
92
+ .chat-interface {
93
+ background-color: #1e1e1e !important;
94
  color: white !important;
95
  }
96
  """