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
- Host: GitHub
- URL: https://github.com/josephbarbierdarnal/morethemes
- Owner: JosephBARBIERDARNAL
- License: other
- Created: 2025-01-13T14:26:51.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-24T13:20:58.000Z (about 1 year ago)
- Last Synced: 2025-04-24T14:20:01.602Z (about 1 year ago)
- Topics: data-visualization, matplotlib, theme
- Language: Python
- Homepage: https://josephbarbierdarnal.github.io/morethemes/
- Size: 8.92 MB
- Stars: 35
- Watchers: 1
- Forks: 1
- 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.

[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://josephbarbierdarnal.github.io/morethemes/)
### Urban
```python
import morethemes as mt
mt.set_theme("urban")
```
[](https://josephbarbierdarnal.github.io/morethemes/)
### Minimal
```python
import morethemes as mt
mt.set_theme("minimal")
```
[](https://josephbarbierdarnal.github.io/morethemes/)
### FT
```python
import morethemes as mt
mt.set_theme("ft")
```
[](https://josephbarbierdarnal.github.io/morethemes/)
### Nature
```python
import morethemes as mt
mt.set_theme("nature")
```
[](https://josephbarbierdarnal.github.io/morethemes/)
### Economist
```python
import morethemes as mt
mt.set_theme("economist")
```
[](https://josephbarbierdarnal.github.io/morethemes/)
### Retro
```python
import morethemes as mt
mt.set_theme("retro")
```
[](https://josephbarbierdarnal.github.io/morethemes/)
### Yellowish
```python
import morethemes as mt
mt.set_theme("yellowish")
```
[](https://josephbarbierdarnal.github.io/morethemes/)
### Darker
```python
import morethemes as mt
mt.set_theme("darker")
```
[](https://josephbarbierdarnal.github.io/morethemes/)
### Monoblue
```python
import morethemes as mt
mt.set_theme("monoblue")
```
[](https://josephbarbierdarnal.github.io/morethemes/)