Metadata-Version: 2.1
Name: carbonplan-styles
Version: 0.1.1
Summary: CarbonPlan plotting styles
Home-page: https://github.com/carbonplan/styles
Maintainer: Joe Hamman
Maintainer-email: joe@carbonplan.org
License: MIT
Description: <img
          src='https://carbonplan-assets.s3.amazonaws.com/monogram/dark-small.png'
          height='48'
        />
        
        # carbonplan / styles
        
        **plot styles for matplotlib and altair**
        
        [![GitHub][github-badge]][github]
        ![Build Status][]
        ![MIT License][]
        
        [github]: https://github.com/carbonplan/styles
        [github-badge]: https://flat.badgen.net/badge/-/github?icon=github&label
        [build status]: https://flat.badgen.net/github/checks/carbonplan/styles
        [mit license]: https://flat.badgen.net/badge/license/MIT/blue
        
        A collection of plotting styles for [Matplotlib](https://matplotlib.org/) and [Altair](https://altair-viz.github.io/).
        
        Try it out on Binder:
        [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jhamman/carbonplan-styles/master?urlpath=lab)
        
        ## install
        
        ```shell
        pip install carbonplan[styles]
        ```
        
        ## usage
        
        There are currently two separate styles/themes available in this package:
        
        1. `carbonplan_dark`: black background, lighter colors
        2. `carbonplan_light`: white background, darker colors
        
        Both styels/themes are automatically made available in Matplotlib and Altair.
        
        ### matplotlib
        
        ```python
        from carbonplan import styles
        
        styles.mpl.set_theme(style='carbonplan_dark')
        ```
        
        ### altair
        
        ```python
        import altair as alt
        
        alt.themes.enable('carbonplan_dark')
        ```
        
        ## license
        
        All the code in this repository is [MIT](https://choosealicense.com/licenses/mit/) licensed. We include attribution for this content, and we please request that you also maintain that attribution if using this data.
        
        ## about us
        
        CarbonPlan is a non-profit organization that uses data and science for carbon removal. We aim to improve the transparency and scientific integrity of carbon removal and climate solutions through open data and tools. Find out more at [carbonplan.org](https://carbonplan.org/) or get in touch by [opening an issue](https://github.com/carbonplan/styles/issues/new) or [sending us an email](mailto:hello@carbonplan.org).
        
Keywords: matplotlib,altair
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.7
Description-Content-Type: text/markdown
