Skip to main content

A Python3 module for colors

Project 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.

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)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

colorix-0.1.5.tar.gz (3.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page