Precision color conversion library (sRGB to Oklab/Oklch)
Project description
colorswan
colorswan is a precision color conversion library for Python, focused on converting sRGB to the perceptual color spaces Oklab and Oklch.
It provides accurate conversions using standard white points and matrices, suitable for color science, data visualization, and web design applications.
Installation
pip install colorswan
Usage
Basic Conversion (Hex to Oklab/Oklch)
from colorswan import OkColor
converter = OkColor()
# Convert from Hex
result = converter.convert("#FF0000") # Red
print(result)
# Output:
# {
# 'oklab': Oklab(L=0.6279..., a=0.2248..., b=0.1258...),
# 'oklch': Oklch(L=0.6279..., C=0.2576..., h=29.233...)
# }
# Access properties
print(result['oklab'].L) # 0.6279...
Tuple Input
You can also pass RGB tuples (0-255).
# Convert from RGB Tuple
white = converter.convert((255, 255, 255))
print(white['oklab'].L)
# 1.0
Using Constants
The library exposes standard color matrices and white points.
from colorswan import constants
print(constants.WHITE_POINT_D65)
# (0.95047, 1.0, 1.08883)
Features
- Accurate: Implements the official Oklab matrices (sRGB -> Linear -> XYZ -> LMS -> Oklab).
- Zero Dependencies: Pure Python implementation.
- Easy to Use: Simple API for common color tasks.
License
MIT
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file colorswan-0.1.0.tar.gz.
File metadata
- Download URL: colorswan-0.1.0.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db5d38a5d54259292b1a2dd80ab492b853754e2b7b2523f7ff5cc8f212aa7d3b
|
|
| MD5 |
134d0c69198ba10d9543afb10a27a7e3
|
|
| BLAKE2b-256 |
b4594c0f53c50cf55d78f669ec44adccda1be13f079e683b1d5e19b3a5f51fa7
|
File details
Details for the file colorswan-0.1.0-py3-none-any.whl.
File metadata
- Download URL: colorswan-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29e8971e4ad3e0b1e72aeadac73fe7332ff04a74e70517b10c86809c26b57f6b
|
|
| MD5 |
41409430335d6e2f5d1ef6fc97f2cac5
|
|
| BLAKE2b-256 |
f3e7733177ab1e43630ba56aaa019e4f67dd0f900aba060b6264d40d84e20602
|