This project generates (various) wallpapers using Python and Pillow. The default colorscheme is the Colorbrewer 11-class diverging BrBG palette (supplied by Palettable).
Run wallpaper in your console to get a PNG image with the name wallpaper-<current-time>.png.
Python 2 and 3 are supported.
Install and run:
$ pip install wallpaper $ wallpaper
Creating a wallpaper
from wallpaper import Cubic image = Cubic() image.paint()
Implementing your own
Inherit from
wallpaper.Wallpaperand implement thepaint_patternfunction.
- Better color selection
