Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -36,37 +36,31 @@ def respond(
|
|
36 |
|
37 |
custom_css = """
|
38 |
body {
|
39 |
-
background-color: #
|
40 |
color: #ffffff;
|
41 |
}
|
42 |
-
|
43 |
.gradio-container {
|
44 |
-
background-color: #
|
45 |
}
|
46 |
-
|
47 |
.gradio-textbox, .gradio-slider {
|
48 |
border: 1px solid #ffffff !important;
|
49 |
-
background-color: #
|
50 |
color: #ffffff !important;
|
51 |
box-shadow: 0 0 10px #00ff00 !important; /* Glowing effect */
|
52 |
}
|
53 |
-
|
54 |
.gradio-slider input[type=range] {
|
55 |
background-color: #00ff00 !important; /* Change slider color */
|
56 |
}
|
57 |
-
|
58 |
.gradio-button {
|
59 |
background-color: #00ff00 !important;
|
60 |
-
color: #
|
61 |
border: none !important;
|
62 |
box-shadow: 0 0 10px #00ff00 !important; /* Glowing effect */
|
63 |
}
|
64 |
-
|
65 |
.gradio-chat {
|
66 |
-
background-color: #
|
67 |
color: #ffffff !important;
|
68 |
}
|
69 |
-
|
70 |
.gradio-label {
|
71 |
color: #ffffff !important;
|
72 |
}
|
|
|
36 |
|
37 |
custom_css = """
|
38 |
body {
|
39 |
+
background-color: #1c1c1c; /* Darker, softer black */
|
40 |
color: #ffffff;
|
41 |
}
|
|
|
42 |
.gradio-container {
|
43 |
+
background-color: #1c1c1c !important;
|
44 |
}
|
|
|
45 |
.gradio-textbox, .gradio-slider {
|
46 |
border: 1px solid #ffffff !important;
|
47 |
+
background-color: #333333 !important; /* Slightly lighter black */
|
48 |
color: #ffffff !important;
|
49 |
box-shadow: 0 0 10px #00ff00 !important; /* Glowing effect */
|
50 |
}
|
|
|
51 |
.gradio-slider input[type=range] {
|
52 |
background-color: #00ff00 !important; /* Change slider color */
|
53 |
}
|
|
|
54 |
.gradio-button {
|
55 |
background-color: #00ff00 !important;
|
56 |
+
color: #1c1c1c !important;
|
57 |
border: none !important;
|
58 |
box-shadow: 0 0 10px #00ff00 !important; /* Glowing effect */
|
59 |
}
|
|
|
60 |
.gradio-chat {
|
61 |
+
background-color: #333333 !important; /* Slightly lighter black */
|
62 |
color: #ffffff !important;
|
63 |
}
|
|
|
64 |
.gradio-label {
|
65 |
color: #ffffff !important;
|
66 |
}
|