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

https://github.com/josephbarbierdarnal/morethemes

More themes for matplotlib
https://github.com/josephbarbierdarnal/morethemes

data-visualization matplotlib theme

Last synced: about 1 year 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.

![PyPI - Downloads](https://img.shields.io/pypi/dm/morethemes)

[Documentation site](https://josephbarbierdarnal.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/JosephBARBIERDARNAL/morethemes/blob/main/morethemes/themes.py) to find the rcParams, or use the `mt.get_rcparams("theme_name")` function.



## Themes

**`morethemes`** offers 10 themes at the moment:

### WSJ

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

[![](https://raw.githubusercontent.com/JosephBARBIERDARNAL/morethemes/refs/heads/main/docs/img/wsj.png)](https://josephbarbierdarnal.github.io/morethemes/)


### Urban

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

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


### Minimal

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

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


### FT

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

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


### Nature

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

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


### Economist

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

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


### Retro

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

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


### Yellowish

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

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


### Darker

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

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


### Monoblue

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

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