Spaces:
Sleeping
Sleeping
css update
Browse files
app.py
CHANGED
@@ -72,13 +72,25 @@ def chat(user_input, history):
|
|
72 |
|
73 |
css = """
|
74 |
body {
|
75 |
-
background-color:
|
76 |
-
color: white;
|
77 |
}
|
78 |
.gradio-container {
|
79 |
-
background-color:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
}
|
81 |
-
.
|
|
|
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 |
"""
|