Spaces:
Running
Running
Leire Aguirre
commited on
Commit
•
d799097
1
Parent(s):
52097ad
update name
Browse files
README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
|
2 |
---
|
3 |
tags: [gradio-theme]
|
4 |
-
title:
|
5 |
colorFrom: red
|
6 |
colorTo: purple
|
7 |
sdk: gradio
|
@@ -10,7 +10,7 @@ app_file: app.py
|
|
10 |
pinned: false
|
11 |
license: apache-2.0
|
12 |
---
|
13 |
-
#
|
14 |
## Description
|
15 |
Add a description of this theme here!
|
16 |
## Contributions
|
|
|
1 |
|
2 |
---
|
3 |
tags: [gradio-theme]
|
4 |
+
title: argilla-theme
|
5 |
colorFrom: red
|
6 |
colorTo: purple
|
7 |
sdk: gradio
|
|
|
10 |
pinned: false
|
11 |
license: apache-2.0
|
12 |
---
|
13 |
+
# argilla-theme
|
14 |
## Description
|
15 |
Add a description of this theme here!
|
16 |
## Contributions
|
app.py
CHANGED
@@ -5,13 +5,13 @@ from gradio.themes.utils.theme_dropdown import create_theme_dropdown
|
|
5 |
|
6 |
dropdown, js = create_theme_dropdown()
|
7 |
|
8 |
-
with gr.Blocks(theme='Leiyre/
|
9 |
with gr.Row(equal_height=True):
|
10 |
with gr.Column(scale=10):
|
11 |
gr.Markdown(
|
12 |
"""
|
13 |
-
# Theme preview: `
|
14 |
-
To use this theme, set `theme='Leiyre/
|
15 |
You can append an `@` and a semantic version expression, e.g. @>=1.0.0,<2.0.0 to pin to a given version
|
16 |
of this theme.
|
17 |
"""
|
|
|
5 |
|
6 |
dropdown, js = create_theme_dropdown()
|
7 |
|
8 |
+
with gr.Blocks(theme='Leiyre/argilla-theme') as demo:
|
9 |
with gr.Row(equal_height=True):
|
10 |
with gr.Column(scale=10):
|
11 |
gr.Markdown(
|
12 |
"""
|
13 |
+
# Theme preview: `argilla-theme`
|
14 |
+
To use this theme, set `theme='Leiyre/argilla-theme'` in `gr.Blocks()` or `gr.Interface()`.
|
15 |
You can append an `@` and a semantic version expression, e.g. @>=1.0.0,<2.0.0 to pin to a given version
|
16 |
of this theme.
|
17 |
"""
|