aryan79 commited on
Commit
7a182a2
·
verified ·
1 Parent(s): 263301a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -9
app.py CHANGED
@@ -136,11 +136,9 @@ h1, h2, p {
136
  color: #333; /* Darker color for better visibility */
137
  }
138
 
139
- /* Inline styles to target the example section directly */
140
- .gradio-container .gr-examples-title,
141
- .gradio-container .gr-examples-btn,
142
- .gradio-container .gr-suggestions li {
143
- color: #333 !important; /* Force dark color for examples and suggestions */
144
  }
145
 
146
  /* Use inline styling for examples section */
@@ -221,10 +219,10 @@ iface = gr.Interface(
221
  theme="huggingface",
222
  css=custom_css,
223
  examples=[
224
- ["machine learning for beginners"],
225
- ["advanced data visualization techniques"],
226
- ["python programming basics"],
227
- ["Business Analytics"]
228
  ],
229
  )
230
 
 
136
  color: #333; /* Darker color for better visibility */
137
  }
138
 
139
+ /* Customize color of Examples text directly with inline styles */
140
+ .gr-examples-title, .gr-examples-btn, .gr-suggestions li {
141
+ color: #333 !important; /* Set the color to dark for better contrast */
 
 
142
  }
143
 
144
  /* Use inline styling for examples section */
 
219
  theme="huggingface",
220
  css=custom_css,
221
  examples=[
222
+ ["<span style='color: #333;'>machine learning for beginners</span>"],
223
+ ["<span style='color: #333;'>advanced data visualization techniques</span>"],
224
+ ["<span style='color: #333;'>python programming basics</span>"],
225
+ ["<span style='color: #333;'>Business Analytics</span>"]
226
  ],
227
  )
228