Metadata-Version: 2.4
Name: pygments-style-solarized
Version: 0.2.0
Summary: The Solarized theme for Pygments.
Home-page: https://github.com/shkumagai/pygments-style-solarized
Author: shkumagai
Author-email: take.this.2.your.grave@gmail.com
Requires-Python: >=3.6,<4.0
License-File: LICENSE
License-File: AUTHORS.rst
Requires-Dist: pygments>=1.5
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

Install
=======

Using PyPI and pip
------------------
::

   $ (sudo) pip install pygments-style-solarized

Manual
------
::

   $ git clone git://github.com/shkumagai/pygments-style-solarized
   $ cd pygments-style-solarized
   $ (sudo) pip install .

Usage Sample
------------
::

   >>> from pygments.formatter import Formatter
   >>> Formatter(style='solarizedlight').style
   <class 'pygments_style_solarized.light.LightStyle'>
   >>> Formatter(style='solarizeddark').style
   <class 'pygments_style_solarized.light.DarkStyle'>


Export the style as CSS
-----------------------
::

   pygmentize -S solarizedlight -f html > solarizedlight.css

