Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -223,7 +223,11 @@ def get_top_bottom_news(date_obj):
|
|
223 |
return f"<ul>{top_news_html}</ul>", f"<ul>{bottom_news_html}</ul>"
|
224 |
|
225 |
with gr.Blocks(
|
226 |
-
theme=gr.themes.Soft(
|
|
|
|
|
|
|
|
|
227 |
) as app:
|
228 |
gr.Markdown(f"""<div style='text-align: center; padding: 20px; color: white;'><h1 style='font-size: 3em; color: #00BFFF;'>📈 Crypto Pulse</h1><p style='font-size: 1.2em; color: #A9A9A9;'>比特幣新聞情緒與價格分析儀表板</p><p style='font-size: 0.9em; color: #888;'>Designed by: {DEVELOPER_NAME}</p></div>""")
|
229 |
|
|
|
223 |
return f"<ul>{top_news_html}</ul>", f"<ul>{bottom_news_html}</ul>"
|
224 |
|
225 |
with gr.Blocks(
|
226 |
+
theme=gr.themes.Soft(
|
227 |
+
primary_hue="sky",
|
228 |
+
secondary_hue="orange",
|
229 |
+
font=["Arial", "sans-serif"]
|
230 |
+
)
|
231 |
) as app:
|
232 |
gr.Markdown(f"""<div style='text-align: center; padding: 20px; color: white;'><h1 style='font-size: 3em; color: #00BFFF;'>📈 Crypto Pulse</h1><p style='font-size: 1.2em; color: #A9A9A9;'>比特幣新聞情緒與價格分析儀表板</p><p style='font-size: 0.9em; color: #888;'>Designed by: {DEVELOPER_NAME}</p></div>""")
|
233 |
|