Metadata-Version: 2.1
Name: colorconverters
Version: 0.0.3
Summary: Handles colors and features various other utilities related to color conversions
Home-page: UNKNOWN
Author: GenZ Gamer
Author-email: thatgenzgamer@gmail.com
License: MIT
Description: # Color Converters
        
        ## About the package
        This is a very useful utility for converting hex to colors and colors to hex. Currently it only supports 3 colors and hexes but I am planning to add more later on!
        
        ## Installation
        
        Installing this module is very easy
        
        ### Windows
        ```sh
        python -m pip install color-converters
        ```
        
        ### Mac or Linux
        ```sh
        python3 -m pip install color-converters
        ```
        
        ## Docs
        
        `color_to_hex(color)`
        
        Parameters:
            - color: [str](https://docs.python.org/3/library/stdtypes.html?highlight=str#str) - The color to convert to hex
        
        **Returns**
        [str](https://docs.python.org/3/library/stdtypes.html?highlight=str#str)
        
        `hex_to_color(hex)`
        
        Parameters:
            - hex: [str](https://docs.python.org/3/library/stdtypes.html?highlight=str#str) - The hex to convert to color
          
        **Returns**
        [str](https://docs.python.org/3/library/stdtypes.html?highlight=str#str)
        
        
Keywords: colors,converters,colorconverters
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
