Metadata-Version: 2.1
Name: color-name
Version: 0.2.0
Summary: Tells you what name a color has
Home-page: https://github.com/tvanderplas/color-name
Author: Tim Vanderplas
License: GPLv3
Description: Color-name
        ==========
        
        Color-name converts RGB values to English names. 
        
        `pip install color-name`
        
        Example Usage
        =============
        
        ```python
            >>>import colorname
            >>>colorname.get_color_name(255, 0, 0)
            'red'
            >>>colorname.get_color_name(129, 128, 128)
            'gray'
            >>> while colorname.get_pixel_color_name(600, 800) != 'white':
            ...     pass
            ...
        ```
        
        Versioning
        ----------
        
        This project uses [SemVer](http://semver.org/) for versioning. For the versions available, see [releases](https://github.com/tvanderplas/color-name/releases). 
        
        Authors
        -------
        
        * **Tim Vanderplas** - *Initial work* - [tvanderplas](https://github.com/tvanderplas)
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
