Find color values for standard W3C colors.
Project description
This package provides an API for looking up hex, rgb, hsv, or hsl values of W3C-recognized colors. The Color class, when initialized with a valid identifier, will have as its attributes components of the various color model representations.
- Example:
To retrieve the numeric representations of the color brown as defined by the W3C:
>>> from colorlookup import Color >>> >>> brown = Color('brown') >>> >>> print(brown) Color: Brown hex: #a52a2a rgb: (165, 42, 42) >>> >>> brown.hex '#a52a2a' >>> brown.rgb (165, 42, 42) >>> brown.r 165 >>> brown.g 42 >>> brown.b 42 >>> brown.rgb_f (0.65, 0.16, 0.16) >>> brown.r_f 0.65 >>> brown.g_f 0.16 >>> brown.b_f 0.6 >>> brown.hsl_sat 0.59 >>> brown.hsl_light 0.41 >>> brown.hsv_sat 0.75 >>> brown.hsv_val 0.65
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file colorlookup-0.2.3-py3-none-any.whl
.
File metadata
- Download URL: colorlookup-0.2.3-py3-none-any.whl
- Upload date:
- Size: 44.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e332d0dc220892a17dbd0822ead4174bacbedcb6a074df0d0fabc0ff0ac4332 |
|
MD5 | d5f313a3cc0fc116bba24199558b5163 |
|
BLAKE2b-256 | 4cc6e2964fb3c55c1cec5e9d3b2c1a2078e8d434c28d6f46e9a246094dd23d83 |