Update README.md
Browse files
README.md
CHANGED
@@ -1,17 +1,35 @@
|
|
1 |
-
|
2 |
---
|
3 |
-
tags:
|
|
|
4 |
title: theme
|
5 |
-
|
6 |
-
|
|
|
7 |
sdk: gradio
|
8 |
sdk_version: 3.25.0
|
9 |
app_file: app.py
|
10 |
-
pinned:
|
11 |
license: apache-2.0
|
12 |
---
|
13 |
# theme
|
14 |
## Description
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
## Contributions
|
17 |
-
Thanks to [@deepkyu](https://huggingface.co/deepkyu) for adding this gradio theme!
|
|
|
|
|
1 |
---
|
2 |
+
tags:
|
3 |
+
- gradio-theme
|
4 |
title: theme
|
5 |
+
emoji: 🎨
|
6 |
+
colorFrom: blue
|
7 |
+
colorTo: indigo
|
8 |
sdk: gradio
|
9 |
sdk_version: 3.25.0
|
10 |
app_file: app.py
|
11 |
+
pinned: true
|
12 |
license: apache-2.0
|
13 |
---
|
14 |
# theme
|
15 |
## Description
|
16 |
+
|
17 |
+
Space theme with Nota branding color(s); Built with gradio theme builder.
|
18 |
+
|
19 |
+
```python
|
20 |
+
import gradio as gr
|
21 |
+
|
22 |
+
THEME_NOTA = gr.themes.Base(
|
23 |
+
primary_hue=gr.themes.Color(c100="#d6def5", c200="#adbeeb", c300="#819adf", c400="#5879d5", c50="#ebeffa", c500="#3e5ac8", c600="#28489f", c700="#112344", c800="#0b172d", c900="#060d18", c950="#03060c"),
|
24 |
+
secondary_hue="gray",
|
25 |
+
neutral_hue="zinc",
|
26 |
+
spacing_size=gr.themes.utils.sizes.spacing_lg,
|
27 |
+
radius_size=gr.themes.utils.sizes.radius_lg,
|
28 |
+
font=[gr.themes.GoogleFont('Poppins'), gr.themes.GoogleFont('Source Sans Pro'), 'system-ui', 'sans-system-ui'],
|
29 |
+
font_mono=[gr.themes.GoogleFont('DM Mono'), 'ui-monospace', 'Consolas', 'monospace'],
|
30 |
+
)
|
31 |
+
```
|
32 |
+
|
33 |
+
|
34 |
## Contributions
|
35 |
+
Thanks to [@deepkyu](https://huggingface.co/deepkyu) for adding this gradio theme!
|