David Driscoll
commited on
Commit
·
9a89e03
1
Parent(s):
07c5ca0
Remove glow
Browse files
app.py
CHANGED
|
@@ -217,7 +217,7 @@ def analyze_faces_current(image):
|
|
| 217 |
return output, f"<div style='color: #00ff00 !important;'>Face Detection: {faces_cache['text']}</div>"
|
| 218 |
|
| 219 |
# -----------------------------
|
| 220 |
-
# Custom CSS (Revamped High-Contrast Neon Theme with Green Glows)
|
| 221 |
# -----------------------------
|
| 222 |
custom_css = """
|
| 223 |
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
|
|
@@ -241,7 +241,6 @@ body {
|
|
| 241 |
.gradio-title, .gradio-description, .tab-item, .tab-item *,
|
| 242 |
label, .label, .wrap .label, .wrap .input, .wrap .output, .wrap .description {
|
| 243 |
color: #00ff00 !important;
|
| 244 |
-
text-shadow: 0 0 10px #00ff00;
|
| 245 |
}
|
| 246 |
|
| 247 |
input, button, .output {
|
|
@@ -254,7 +253,6 @@ input, button, .output {
|
|
| 254 |
/* Added higher specificity override for all elements within the gradio container */
|
| 255 |
.gradio-container * {
|
| 256 |
color: #00ff00 !important;
|
| 257 |
-
text-shadow: 0 0 10px #00ff00 !important;
|
| 258 |
}
|
| 259 |
"""
|
| 260 |
|
|
|
|
| 217 |
return output, f"<div style='color: #00ff00 !important;'>Face Detection: {faces_cache['text']}</div>"
|
| 218 |
|
| 219 |
# -----------------------------
|
| 220 |
+
# Custom CSS (Revamped High-Contrast Neon Theme with Green Glows removed from text)
|
| 221 |
# -----------------------------
|
| 222 |
custom_css = """
|
| 223 |
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
|
|
|
|
| 241 |
.gradio-title, .gradio-description, .tab-item, .tab-item *,
|
| 242 |
label, .label, .wrap .label, .wrap .input, .wrap .output, .wrap .description {
|
| 243 |
color: #00ff00 !important;
|
|
|
|
| 244 |
}
|
| 245 |
|
| 246 |
input, button, .output {
|
|
|
|
| 253 |
/* Added higher specificity override for all elements within the gradio container */
|
| 254 |
.gradio-container * {
|
| 255 |
color: #00ff00 !important;
|
|
|
|
| 256 |
}
|
| 257 |
"""
|
| 258 |
|