Skip to main content

Color handling made simple.

Project description

Chroma

Chroma is a Python module for handling colors with ease. Chroma supports HEX, RGB, HLS and HSV color coordinates and can seamlessly support alpha.

Quickstart

import chroma

# Create a Color object
color = chroma.Color('#00FF00')

# Get RGB, HLS, and HSV in either float or 0 - 255 (8bit)
# Also, HEX
color.rgb # (0.0, 1.0, 0.0)
color.hls # (0.3333333333333333, 0.5, 1.0)
color.rgb256 # (0, 255, 0)
color.hex = # '#00FF00'

# Set RGB, HLS, HSV (float or 256) and HEX
color.rgb256 = (255, 0, 0)
color.hls = (0.0, 1.0, 0.0)

BSD licensed. Hosted on Github and available on PyPI.

Documentation

Install Chroma with Pip:

pip install chroma

To handle various color coordinates, Chroma uses a Color object. A Color object can be initialized with any available color format (HEX, RGB, RGB256, HLS, HSV).

c = chroma.Color()  # defaults to white
c = chroma.Color('#557799')  # default format is HEX
c = chroma.Color((0.583, 0.444, 0.60), 'HSV')  # create Color object with HLS

To modify or access the color in any format, use Color’s properties.

c.hex
c.rgb
c.rgb256
c.hls
c.hsv

c.hex = '#557799'
c.hsv = (0.583, 0.444, 0.60)
...

Chroma Colors also support alpha. A Color object’s alpha is set to None by default, and as long as it is None it will be ignored. If it is included when setting the color, it will be added to the getters returns as well.

c.hex = '#557799'
c.rgb  # (0.3333, 0.4666, 0.6)

c.hex = '#557799FF'
c.rgb  # (0.3333, 0.4666, 0.6, 1.0)
c.hls  # (0.5833, 0.4666, 0.2857, 1.0)

c.alpha = None
c.rgb  # (0.3333, 0.4666, 0.6)

Currently Supports

  • Hex (#rrggbb, #rrggbbaa)

  • RGB (float, 256)

  • HLS (float)

  • HSV (float)

  • Alpha

Roadmap

  • More Hex formats (#RGB, #RRRGGGBBB, #RRRRGGGGBBBB)

  • Color dectection in images

  • Direct modification of Red, Green, Blue, Lightness, Hue, Saturation, Value

History

0.1.2 (2012-12-28)

  • Remove HLS256, HSV256 (critical bug)

  • Alpha support

  • Add RGB, RGB256, HLS, HSV as formats for Color initialization

  • Bug fixes

0.1.1 (2012-12-16)

  • HLS, HSV Support

  • API changes (setter methods)

  • Bug Fixes

  • Update to README

0.1.0 (2012-12-15)

  • Initial Release

  • RGB and Hex support

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

Chroma-0.1.2.tar.gz (4.6 kB view details)

Uploaded Source

File details

Details for the file Chroma-0.1.2.tar.gz.

File metadata

  • Download URL: Chroma-0.1.2.tar.gz
  • Upload date:
  • Size: 4.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Chroma-0.1.2.tar.gz
Algorithm Hash digest
SHA256 267e86ea2207ff6cac1a4e0408db0d069a8bd10388950846b17b5ad977ca2568
MD5 205817b222fc2d9779db65e42b047a7f
BLAKE2b-256 974f7372817fa35f915be4e38e4ed8ade768ec699b84b31144a4c1be19d82e90

See more details on using hashes here.

Supported by

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