Update app.py
Browse files
app.py
CHANGED
|
@@ -138,6 +138,17 @@ h1, h2, p {
|
|
| 138 |
.examples, .examples li, .suggestions, .examples-container, .gradio-container .gr-examples-btn {
|
| 139 |
color: #333 !important; /* Force dark color for examples and suggestions */
|
| 140 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 141 |
.container {
|
| 142 |
max-width: 800px;
|
| 143 |
margin: 0 auto;
|
|
|
|
| 138 |
.examples, .examples li, .suggestions, .examples-container, .gradio-container .gr-examples-btn {
|
| 139 |
color: #333 !important; /* Force dark color for examples and suggestions */
|
| 140 |
}
|
| 141 |
+
|
| 142 |
+
/* Targeting examples title specifically */
|
| 143 |
+
.gradio-container .gr-examples-title {
|
| 144 |
+
color: #333 !important; /* Make the examples title dark */
|
| 145 |
+
}
|
| 146 |
+
|
| 147 |
+
/* Styling for the suggestions area to ensure it's dark */
|
| 148 |
+
.gradio-container .gr-suggestions {
|
| 149 |
+
color: #333 !important; /* Ensure suggestions are visible in dark color */
|
| 150 |
+
}
|
| 151 |
+
|
| 152 |
.container {
|
| 153 |
max-width: 800px;
|
| 154 |
margin: 0 auto;
|