https://github.com/y-sunflower/morethemes
More themes for matplotlib πΈπ¦ππ
https://github.com/y-sunflower/morethemes
data-visualization matplotlib theme
Last synced: 8 days ago
JSON representation
More themes for matplotlib πΈπ¦ππ
- Host: GitHub
- URL: https://github.com/y-sunflower/morethemes
- Owner: y-sunflower
- License: mit
- Created: 2025-01-13T14:26:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-01T12:19:46.000Z (5 months ago)
- Last Synced: 2025-09-01T12:40:51.033Z (5 months ago)
- Topics: data-visualization, matplotlib, theme
- Language: Python
- Homepage: https://y-sunflower.github.io/morethemes/
- Size: 13.3 MB
- Stars: 56
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: docs/contributing.md
- License: LICENSE
Awesome Lists containing this project
README
# `morethemes`: more themes for matplotlib

**`morethemes`** provides themes for
[matplotlib](https://matplotlib.org/). More themes, better plots, one
line of code.
[](https://pepy.tech/projects/morethemes)
[Documentation site](https://y-sunflower.github.io/morethemes/)
## Installation
``` bash
pip install morethemes
```
Donβt want to add **`morethemes`** as a dependency? You can either
browse the [source
code](https://github.com/y-sunflower/morethemes/blob/main/morethemes/themes.py)
to find the rcParams, or use the `mt.get_rcparams("theme_name")`
function.
## Themes
**`morethemes`** offers 16 themes at the moment:
### WSJ
``` python
import morethemes as mt
mt.set_theme("wsj")
```
[](https://y-sunflower.github.io/morethemes/)
### URBAN
``` python
import morethemes as mt
mt.set_theme("urban")
```
[](https://y-sunflower.github.io/morethemes/)
### MINIMAL
``` python
import morethemes as mt
mt.set_theme("minimal")
```
[](https://y-sunflower.github.io/morethemes/)
### FT
``` python
import morethemes as mt
mt.set_theme("ft")
```
[](https://y-sunflower.github.io/morethemes/)
### NATURE
``` python
import morethemes as mt
mt.set_theme("nature")
```
[](https://y-sunflower.github.io/morethemes/)
### ECONOMIST
``` python
import morethemes as mt
mt.set_theme("economist")
```
[](https://y-sunflower.github.io/morethemes/)
### GREENWAVE
``` python
import morethemes as mt
mt.set_theme("greenwave")
```
[](https://y-sunflower.github.io/morethemes/)
### LUMEN
``` python
import morethemes as mt
mt.set_theme("lumen")
```
[](https://y-sunflower.github.io/morethemes/)
### EBONIS
``` python
import morethemes as mt
mt.set_theme("ebonis")
```
[](https://y-sunflower.github.io/morethemes/)
### LIGHTER
``` python
import morethemes as mt
mt.set_theme("lighter")
```
[](https://y-sunflower.github.io/morethemes/)
### VSCODE-DARK
``` python
import morethemes as mt
mt.set_theme("vscode-dark")
```
[](https://y-sunflower.github.io/morethemes/)
### NORD
``` python
import morethemes as mt
mt.set_theme("nord")
```
[](https://y-sunflower.github.io/morethemes/)
### RETRO
``` python
import morethemes as mt
mt.set_theme("retro")
```
[](https://y-sunflower.github.io/morethemes/)
### DARKER
``` python
import morethemes as mt
mt.set_theme("darker")
```
[](https://y-sunflower.github.io/morethemes/)
### YELLOWISH
``` python
import morethemes as mt
mt.set_theme("yellowish")
```
[](https://y-sunflower.github.io/morethemes/)
### MONOBLUE
``` python
import morethemes as mt
mt.set_theme("monoblue")
```
[](https://y-sunflower.github.io/morethemes/)