Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -84,27 +84,27 @@ light_css = """
|
|
84 |
|
85 |
# Dark mode CSS
|
86 |
dark_css = """
|
87 |
-
.
|
88 |
background-color: #1e1e1e; /* Dark background */
|
89 |
color: white; /* Light text color */
|
90 |
}
|
91 |
|
92 |
-
|
93 |
background-color: #2e2e2e; /* Dark chatbox */
|
94 |
color: white; /* Light text color */
|
95 |
}
|
96 |
|
97 |
-
|
98 |
background-color: #2e2e2e; /* Dark input container */
|
99 |
border: 1px solid #444; /* Dark border */
|
100 |
}
|
101 |
|
102 |
-
|
103 |
background-color: #3e3e3e; /* Dark input field */
|
104 |
color: white; /* Light text color */
|
105 |
}
|
106 |
|
107 |
-
|
108 |
color: #007BFF; /* Button text color */
|
109 |
}
|
110 |
"""
|
|
|
84 |
|
85 |
# Dark mode CSS
|
86 |
dark_css = """
|
87 |
+
.gradio-container {
|
88 |
background-color: #1e1e1e; /* Dark background */
|
89 |
color: white; /* Light text color */
|
90 |
}
|
91 |
|
92 |
+
#chatbox {
|
93 |
background-color: #2e2e2e; /* Dark chatbox */
|
94 |
color: white; /* Light text color */
|
95 |
}
|
96 |
|
97 |
+
#input-container {
|
98 |
background-color: #2e2e2e; /* Dark input container */
|
99 |
border: 1px solid #444; /* Dark border */
|
100 |
}
|
101 |
|
102 |
+
#message-input {
|
103 |
background-color: #3e3e3e; /* Dark input field */
|
104 |
color: white; /* Light text color */
|
105 |
}
|
106 |
|
107 |
+
#send-button {
|
108 |
color: #007BFF; /* Button text color */
|
109 |
}
|
110 |
"""
|