Metadata-Version: 2.1
Name: colorix
Version: 0.1.1
Summary: A Python3 module for colors
Home-page: https://github.com/angelCarias/colorix
Author: Tekgar
License: UNKNOWN
Download-URL: https://github.com/angelCarias/colorix/archive/v0.1.1.tar.gz
Description: # colorix
        Colorix (which stands for 'Color Exchange') is a Python3 module designed for working with colors; specifically color conversion, utilities, and more.
        
        ## Installation
        The easiest way to install `colorix` is through PIP.
        `pip install colorix` or `pip3 install colorix`
        
        **Before installing**, ensure your Python version is 3.6 or above.
        
        ## Usage
        **NOTE: Results produced by colorix are not guaranteed to be accurate**
        
        Currently, `colorix` supports 3 color spaces; RGB, CMYK, and HEX.
        
        The following example demonstrates the standard use of `colorix`.
        
        ```py
        from colorix import RGB # Import the RGB class
        rgb = (12, 34, 56) # Set our values
        my_result = RGB(*rgb).toCMYK().raw # Get our values
        print(my_result) # Print them
        >>> (79, 39, 0, 78)
        
        cmyk = my_result # Set our values
        my_result = CMYK(*cmyk).toRGB().raw # Get our values
        print(my_result) # Print them
        >> (12, 34, 56)
        ```
        
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
