File size: 790 Bytes
2619408 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | ---
license: apache-2.0
---
# Gradio Theme Gallery
Community-contributed themes for [Gradio](https://gradio.app). This dataset powers the theme gallery at [gradio.app/themes](https://gradio.app/themes/gallery).
## How to add a theme
Add an entry to `manifest.json` with your theme's metadata:
```json
{
"id": "your-username/your-theme",
"name": "Your Theme Name",
"author": "your-username",
"description": "A short description of your theme.",
"hf_space_id": "your-username/your-theme-space",
"colors": {
"primary": "#hex",
"secondary": "#hex",
"neutral": "#hex",
"background": "#hex",
"background_dark": "#hex"
},
"fonts": {
"main": "Font Name",
"mono": "Mono Font Name"
}
}
```
Open a Pull Request to this dataset to submit your theme.
|