Solomon7890-jpeg commited on
Commit
1ac8c6d
·
1 Parent(s): 62bcb89

style(ui): aggressive CSS override for maximum gold visibility

Browse files
Files changed (1) hide show
  1. app.py +12 -2
app.py CHANGED
@@ -153,10 +153,20 @@ custom_css = """
153
  border_bottom: 2px solid #FFD700 !important;
154
  font-weight: bold;
155
  }
156
- /* Global Text Color Override for visibility */
157
- body, .gradio-container, .prose {
158
  color: #FFD700 !important;
159
  }
 
 
 
 
 
 
 
 
 
 
160
  """
161
 
162
  # SEO
 
153
  border_bottom: 2px solid #FFD700 !important;
154
  font-weight: bold;
155
  }
156
+ /* Global Text Color Override for visibility - AGGRESSIVE */
157
+ body, .gradio-container, .prose, .prose * {
158
  color: #FFD700 !important;
159
  }
160
+ /* Specific overrides for common Gradio elements that might be stubborn */
161
+ p, span, div, label, button, input, textarea, select, h1, h2, h3, h4, h5, h6, li, ul, ol, th, td, blockquote {
162
+ color: #FFD700 !important;
163
+ text-shadow: 1px 1px 1px #000000;
164
+ }
165
+ /* Ensure links are distinct but visible */
166
+ a {
167
+ color: #FFC125 !important;
168
+ text-decoration: underline;
169
+ }
170
  """
171
 
172
  # SEO