{"id":15665015,"url":"https://github.com/facelessuser/coloraide-extras","last_synced_at":"2025-04-13T17:09:58.606Z","repository":{"id":42116580,"uuid":"469930807","full_name":"facelessuser/coloraide-extras","owner":"facelessuser","description":"Some extra color spaces and such for ColorAide","archived":false,"fork":false,"pushed_at":"2025-04-02T18:52:56.000Z","size":16033,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-13T17:09:48.557Z","etag":null,"topics":["colors","python"],"latest_commit_sha":null,"homepage":"https://facelessuser.github.io/coloraide-extras","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/facelessuser.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"facelessuser","custom":["https://www.paypal.me/facelessuser"]}},"created_at":"2022-03-14T22:56:11.000Z","updated_at":"2025-04-02T18:52:59.000Z","dependencies_parsed_at":"2023-11-24T18:46:00.155Z","dependency_job_id":null,"html_url":"https://github.com/facelessuser/coloraide-extras","commit_stats":{"total_commits":130,"total_committers":1,"mean_commits":130.0,"dds":0.0,"last_synced_commit":"1672ce0f42edbb2d14bf34406f0269d5bb68fe0a"},"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facelessuser%2Fcoloraide-extras","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facelessuser%2Fcoloraide-extras/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facelessuser%2Fcoloraide-extras/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facelessuser%2Fcoloraide-extras/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/facelessuser","download_url":"https://codeload.github.com/facelessuser/coloraide-extras/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248750107,"owners_count":21155686,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["colors","python"],"created_at":"2024-10-03T13:44:46.127Z","updated_at":"2025-04-13T17:09:58.579Z","avatar_url":"https://github.com/facelessuser.png","language":"Python","funding_links":["https://github.com/sponsors/facelessuser","https://www.paypal.me/facelessuser"],"categories":[],"sub_categories":[],"readme":"[![Donate via PayPal][donate-image]][donate-link]\n[![Build][github-ci-image]][github-ci-link]\n[![Coverage Status][codecov-image]][codecov-link]\n[![PyPI Version][pypi-image]][pypi-link]\n[![PyPI Downloads][pypi-down]][pypi-link]\n[![PyPI - Python Version][python-image]][pypi-link]\n![License][license-image-mit]\n\n# ColorAide Extras\n\n## Overview\n\nColorAide Extras is an add-on pack containing various plugins for [ColorAide](https://github.com/facelessuser/coloraide).\nThe idea behind ColorAide Extras is to provide an environment for experimental color spaces, ∆E methods, and other\nplugins.\n\nNormally, it is advisable to only cherry pick color spaces you need. Rarely do people need every color space. This can\nbe done simply by registering the color spaces you'd like.\n\n```python\n\u003e\u003e\u003e from coloraide import Color as Base\n\u003e\u003e\u003e from coloraide_extras.spaces.uvw import UVW\n\u003e\u003e\u003e class Color(Base): ...\n...\n\u003e\u003e\u003e Color.register(UVW())\n\u003e\u003e\u003e Color('red').convert('uvw')\ncolor(--uvw 171.8 24.715 52.261 / 1)\n```\n\nBut, if you want access to all the color spaces for both ColorAide and ColorAide Extras, simply import `Color` from\n`coloraide_extras` instead of `coloraide`:\n\n```python\n\u003e\u003e\u003e from coloraide_extras.everything import ColorAll as Color\n\u003e\u003e\u003e Color('color(--uvw 171.8 24.715 52.261 / 1)')\ncolor(--uvw 171.8 24.715 52.261 / 1)\n```\n\n# Documentation\n\nhttps://facelessuser.github.io/coloraide-extras\n\n## License\n\nMIT\n\n[github-ci-image]: https://github.com/facelessuser/coloraide-extras/workflows/build/badge.svg\n[github-ci-link]: https://github.com/facelessuser/coloraide-extras/actions?query=workflow%3Abuild+branch%3Amain\n[codecov-image]: https://img.shields.io/codecov/c/github/facelessuser/coloraide-extras/main.svg?logo=codecov\u0026logoColor=aaaaaa\u0026labelColor=333333\n[codecov-link]: https://codecov.io/github/facelessuser/coloraide-extras\n[pypi-image]: https://img.shields.io/pypi/v/coloraide-extras.svg?logo=pypi\u0026logoColor=aaaaaa\u0026labelColor=333333\n[pypi-down]: https://img.shields.io/pypi/dm/coloraide-extras.svg?logo=pypi\u0026logoColor=aaaaaa\u0026labelColor=333333\n[pypi-link]: https://pypi.python.org/pypi/coloraide-extras\n[python-image]: https://img.shields.io/pypi/pyversions/coloraide_extras?logo=python\u0026logoColor=aaaaaa\u0026labelColor=333333\n[license-image-mit]: https://img.shields.io/badge/license-MIT-blue.svg?labelColor=333333\n[donate-image]: https://img.shields.io/badge/Donate-PayPal-3fabd1?logo=paypal\n[donate-link]: https://www.paypal.me/facelessuser\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffacelessuser%2Fcoloraide-extras","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffacelessuser%2Fcoloraide-extras","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffacelessuser%2Fcoloraide-extras/lists"}