Added new color theme to the leaderboard
Browse files
app.py
CHANGED
@@ -85,7 +85,13 @@ def create_task_controls(tab_id):
|
|
85 |
return shown_tasks
|
86 |
|
87 |
|
88 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
with demo:
|
90 |
gr.HTML(TITLE)
|
91 |
gr.Markdown(
|
|
|
85 |
return shown_tasks
|
86 |
|
87 |
|
88 |
+
theme = gr.themes.Default(
|
89 |
+
primary_hue="blue",
|
90 |
+
).set(
|
91 |
+
button_border_width='*block_border_width'
|
92 |
+
)
|
93 |
+
|
94 |
+
demo = gr.Blocks(css=CSS, theme=theme)
|
95 |
with demo:
|
96 |
gr.HTML(TITLE)
|
97 |
gr.Markdown(
|