An open API service indexing awesome lists of open source software.

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 πŸŒΈπŸ¦‹πŸ­πŸ‰

Awesome Lists containing this project

README

          

# `morethemes`: more themes for matplotlib

morethemes logo

**`morethemes`** provides themes for
[matplotlib](https://matplotlib.org/). More themes, better plots, one
line of code.

[![](https://static.pepy.tech/badge/morethemes)](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://raw.githubusercontent.com/y-sunflower/morethemes/refs/heads/main/docs/img/wsj.png)](https://y-sunflower.github.io/morethemes/)

### URBAN

``` python
import morethemes as mt
mt.set_theme("urban")
```

[![](https://raw.githubusercontent.com/y-sunflower/morethemes/refs/heads/main/docs/img/urban.png)](https://y-sunflower.github.io/morethemes/)

### MINIMAL

``` python
import morethemes as mt
mt.set_theme("minimal")
```

[![](https://raw.githubusercontent.com/y-sunflower/morethemes/refs/heads/main/docs/img/minimal.png)](https://y-sunflower.github.io/morethemes/)

### FT

``` python
import morethemes as mt
mt.set_theme("ft")
```

[![](https://raw.githubusercontent.com/y-sunflower/morethemes/refs/heads/main/docs/img/ft.png)](https://y-sunflower.github.io/morethemes/)

### NATURE

``` python
import morethemes as mt
mt.set_theme("nature")
```

[![](https://raw.githubusercontent.com/y-sunflower/morethemes/refs/heads/main/docs/img/nature.png)](https://y-sunflower.github.io/morethemes/)

### ECONOMIST

``` python
import morethemes as mt
mt.set_theme("economist")
```

[![](https://raw.githubusercontent.com/y-sunflower/morethemes/refs/heads/main/docs/img/economist.png)](https://y-sunflower.github.io/morethemes/)

### GREENWAVE

``` python
import morethemes as mt
mt.set_theme("greenwave")
```

[![](https://raw.githubusercontent.com/y-sunflower/morethemes/refs/heads/main/docs/img/greenwave.png)](https://y-sunflower.github.io/morethemes/)

### LUMEN

``` python
import morethemes as mt
mt.set_theme("lumen")
```

[![](https://raw.githubusercontent.com/y-sunflower/morethemes/refs/heads/main/docs/img/lumen.png)](https://y-sunflower.github.io/morethemes/)

### EBONIS

``` python
import morethemes as mt
mt.set_theme("ebonis")
```

[![](https://raw.githubusercontent.com/y-sunflower/morethemes/refs/heads/main/docs/img/ebonis.png)](https://y-sunflower.github.io/morethemes/)

### LIGHTER

``` python
import morethemes as mt
mt.set_theme("lighter")
```

[![](https://raw.githubusercontent.com/y-sunflower/morethemes/refs/heads/main/docs/img/lighter.png)](https://y-sunflower.github.io/morethemes/)

### VSCODE-DARK

``` python
import morethemes as mt
mt.set_theme("vscode-dark")
```

[![](https://raw.githubusercontent.com/y-sunflower/morethemes/refs/heads/main/docs/img/vscode-dark.png)](https://y-sunflower.github.io/morethemes/)

### NORD

``` python
import morethemes as mt
mt.set_theme("nord")
```

[![](https://raw.githubusercontent.com/y-sunflower/morethemes/refs/heads/main/docs/img/nord.png)](https://y-sunflower.github.io/morethemes/)

### RETRO

``` python
import morethemes as mt
mt.set_theme("retro")
```

[![](https://raw.githubusercontent.com/y-sunflower/morethemes/refs/heads/main/docs/img/retro.png)](https://y-sunflower.github.io/morethemes/)

### DARKER

``` python
import morethemes as mt
mt.set_theme("darker")
```

[![](https://raw.githubusercontent.com/y-sunflower/morethemes/refs/heads/main/docs/img/darker.png)](https://y-sunflower.github.io/morethemes/)

### YELLOWISH

``` python
import morethemes as mt
mt.set_theme("yellowish")
```

[![](https://raw.githubusercontent.com/y-sunflower/morethemes/refs/heads/main/docs/img/yellowish.png)](https://y-sunflower.github.io/morethemes/)

### MONOBLUE

``` python
import morethemes as mt
mt.set_theme("monoblue")
```

[![](https://raw.githubusercontent.com/y-sunflower/morethemes/refs/heads/main/docs/img/monoblue.png)](https://y-sunflower.github.io/morethemes/)