|
--- |
|
tags: |
|
- gradio-theme |
|
title: theme |
|
emoji: 🎨 |
|
colorFrom: gray |
|
colorTo: gray |
|
sdk: gradio |
|
sdk_version: 3.25.0 |
|
app_file: app.py |
|
pinned: true |
|
license: apache-2.0 |
|
--- |
|
# theme |
|
|
|
## Description |
|
|
|
Space theme with Nota branding color(s); Built with gradio theme builder. |
|
|
|
```python |
|
import gradio as gr |
|
|
|
THEME_NOTA = gr.themes.Base( |
|
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"), |
|
secondary_hue="gray", |
|
neutral_hue="zinc", |
|
spacing_size=gr.themes.utils.sizes.spacing_lg, |
|
radius_size=gr.themes.utils.sizes.radius_lg, |
|
font=[gr.themes.GoogleFont('Poppins'), gr.themes.GoogleFont('Source Sans Pro'), 'system-ui', 'sans-system-ui'], |
|
font_mono=[gr.themes.GoogleFont('DM Mono'), 'ui-monospace', 'Consolas', 'monospace'], |
|
) |
|
``` |
|
|
|
## Contributions |
|
Thanks to [@deepkyu](https://huggingface.co/deepkyu) for adding this gradio theme! |