Metadata-Version: 2.4
Name: pygments-style-jellybeans
Version: 0.1.1
Summary: Jellybeans colorscheme, ported to a Pygments style
License-Expression: ISC
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pygments>=2.4
Dynamic: license-file

# pygments-style-jellybeans

A Pygments port of the [Jellybeans](https://github.com/nanotech/jellybeans.vim)
Vim colorscheme.

## Install

```console
pip install --user .
```

## Use

```console
pygmentize -L styles | grep -A1 jellybeans
pygmentize -O style=jellybeans -f html -o out.html some_file.py
```

Set it as an input preprocessor for less(1):

```console
export LESS="-R"
export LESSOPEN="| pygmentize -O style=jellybeans -g %s"
less some_file.py
```

