aloe-vera commited on
Commit
0a35c11
·
verified ·
1 Parent(s): df2e111

change text colour in dark mode

Browse files
Files changed (1) hide show
  1. app.py +13 -7
app.py CHANGED
@@ -161,21 +161,27 @@ demo = gr.Blocks(css=custom_css)
161
  with demo:
162
  gr.HTML(f"""
163
  <div style="text-align: center; margin-top: 2em; margin-bottom: 1em;">
164
- <img src="data:image/png;base64,{b64_string}" alt="KlusterAI logo" style="height: 80px; display: block; margin-left: auto; margin-right: auto;" />
165
- <div style="font-size: 2.5em; font-weight: bold; margin-top: 0.4em;">
166
- LLM Hallucination Detection <span style="color: #0057ff;">Leaderboard</span>
 
 
167
  </div>
168
- <div style="font-size: 1.5em; color: #444; margin-top: 0.5em;">
 
169
  Evaluating factual accuracy and faithfulness of LLMs in both RAG and real-world knowledge settings with
170
- <a href="https://platform.kluster.ai/verify" target="_blank" style="color: #0057ff; text-decoration: none;">
 
171
  Verify
172
  </a> by
173
- <a href="https://platform.kluster.ai/" target="_blank" style="color: #0057ff; text-decoration: none;">
 
174
  kluster.ai
175
  </a>
176
  </div>
177
  </div>
178
- """)
 
179
 
180
  # gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
181
 
 
161
  with demo:
162
  gr.HTML(f"""
163
  <div style="text-align: center; margin-top: 2em; margin-bottom: 1em;">
164
+ <img src="data:image/png;base64,{b64_string}" alt="KlusterAI logo"
165
+ style="height: 80px; display: block; margin-left: auto; margin-right: auto;" />
166
+
167
+ <div style="font-size: 2.5em; font-weight: bold; margin-top: 0.4em; color: var(--text-color);">
168
+ LLM Hallucination Detection <span style="color: var(--link-color);">Leaderboard</span>
169
  </div>
170
+
171
+ <div style="font-size: 1.5em; margin-top: 0.5em; color: var(--text-color);">
172
  Evaluating factual accuracy and faithfulness of LLMs in both RAG and real-world knowledge settings with
173
+ <a href="https://platform.kluster.ai/verify" target="_blank"
174
+ style="color: var(--link-color); text-decoration: none;">
175
  Verify
176
  </a> by
177
+ <a href="https://platform.kluster.ai/" target="_blank"
178
+ style="color: var(--link-color); text-decoration: none;">
179
  kluster.ai
180
  </a>
181
  </div>
182
  </div>
183
+ """)
184
+
185
 
186
  # gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
187