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

style(ui): force all text to bright Gold (#FFD700) for visibility

Browse files
Files changed (1) hide show
  1. app.py +16 -12
app.py CHANGED
@@ -127,31 +127,35 @@ custom_css = """
127
  -webkit-text-fill-color: transparent;
128
  }
129
  .header-section p {
130
- color: #ffffff;
131
- font-weight: 500;
132
- font-size: 1.1rem;
133
- text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
134
  }
135
  .brain-badge {
136
  display: inline-block;
137
- background: linear-gradient(45deg, #FFD700, #FFC125);
138
  color: #000000;
139
  padding: 8px 16px; border-radius: 20px; font-weight: 800;
140
  margin: 10px 5px;
141
- border: 2px solid #ffffff;
142
- box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
143
- text-shadow: none;
144
  }
145
  .logo-circle img {
146
  border-radius: 50% !important;
147
- box-shadow: 0 0 30px rgba(255, 215, 0, 0.6) !important;
148
- border: 4px solid #FFD700 !important;
149
  object-fit: cover !important;
150
  }
151
  /* Tab Styling */
152
  .tabs button.selected {
153
- color: #D4AF37 !important;
154
- border_bottom: 2px solid #D4AF37 !important;
 
 
 
 
 
155
  }
156
  """
157
 
 
127
  -webkit-text-fill-color: transparent;
128
  }
129
  .header-section p {
130
+ color: #FFD700;
131
+ font-weight: 700;
132
+ font-size: 1.2rem;
133
+ text-shadow: 1px 1px 1px #000000;
134
  }
135
  .brain-badge {
136
  display: inline-block;
137
+ background: linear-gradient(45deg, #FFD700, #FDB931);
138
  color: #000000;
139
  padding: 8px 16px; border-radius: 20px; font-weight: 800;
140
  margin: 10px 5px;
141
+ border: 2px solid #FFFFFF;
142
+ box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
 
143
  }
144
  .logo-circle img {
145
  border-radius: 50% !important;
146
+ box-shadow: 0 0 35px rgba(255, 215, 0, 0.8) !important;
147
+ border: 5px solid #FFD700 !important;
148
  object-fit: cover !important;
149
  }
150
  /* Tab Styling */
151
  .tabs button.selected {
152
+ color: #FFD700 !important;
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