Skip to main content

Theme color library for Material You.

Project description

Material Color Utilities

Material Color Utilities is a Python package for working with Material Design color systems. This package includes utilities for generating themes from colors or images, extracting prominent colors from images, converting colors, and calculating contrast ratios.


Installation

Install the package directly from pip:

pip install material-color-utilities

Features

  • Theming
    • Generate Material Design themes from source colors or images.
  • Image Processing
    • Extract prominent colors from images.
  • Contrast Ratio
    • Calculate contrast ratios between colors.

Usage

Complete API documentation here: API docs.

Importing the Library

from material_color_utilities import (
    CustomColor,
    Variant,
    argb_from_hex,
    hex_from_argb,
    prominent_colors_from_image,
    theme_from_color,
    theme_from_image,
    get_contrast_ratio
)

Generate a Theme

From a Source Color

theme = theme_from_color("#FC03A3", 0, Variant.EXPRESSIVE)
# now apply the theme somewhere
# Example, assuming dark theme:
button.color = theme.schemes.dark.primary
button.text_color = theme.schemes.dark.on_primary
background.color = theme.schemes.dark.surface_container
text_paragraph.color = theme.schemes.dark.on_surface

From an Image

This package will handle converting to RGBA and resizing for performance, so any PIL image can be passed.

from PIL import Image

image = Image.open("path/to/image.jpg")
# You can *optionally* pass a list of custom colors to generate palettes that harmonize with the source color.
custom_colors = [CustomColor("#4285F4", "Google Blue", True)]
theme = theme_from_image(image, 0, Variant.CONTENT, custom_colors)

Theme to dict

A Theme object can be converted to a dict, an example theme dict can be found here.

theme = theme_from_color("#FF0000")
theme_dict = theme.dict()

Extract Prominent Colors from an Image

This package will handle converting to RGBA and resizing for performance, so any PIL image can be passed.

from PIL import Image

image = Image.open("path/to/image.jpg")
colors = prominent_colors_from_image(image, 5)
print(colors)  # Outputs a list of up to 5 prominent colors

Calculate Contrast Ratio

ratio = get_contrast_ratio("#000000", "#FFFFFF")
print(ratio)  # Outputs: 21.0

Convert Colors

ARGB from HEX

argb = argb_from_hex("#4285f4")
print(argb)  # Outputs: 4286017588 (0xFF4285F4)

HEX from ARGB

hex_color = hex_from_argb(0xFF4285F4)
print(hex_color)  # Outputs: "#4285f4"

Testing

To run the tests, install uv, and execute:

uv sync --dev # install packages
uv run pytest tests

License

This project is "forked" from material-foundation/material-color-utilities/.

This project is licensed under the Apache License 2.0. See the LICENSE file for details.


Links

How to publish a release

  • Push to main
  • Create release on GitHub
  • Wait 30 minutes

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

material_color_utilities-0.2.4.tar.gz (5.4 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

material_color_utilities-0.2.4-pp310-pypy310_pp73-win_amd64.whl (248.8 kB view details)

Uploaded PyPyWindows x86-64

material_color_utilities-0.2.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (267.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

material_color_utilities-0.2.4-cp313-cp313-win_amd64.whl (251.2 kB view details)

Uploaded CPython 3.13Windows x86-64

material_color_utilities-0.2.4-cp313-cp313-win32.whl (219.1 kB view details)

Uploaded CPython 3.13Windows x86

material_color_utilities-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

material_color_utilities-0.2.4-cp313-cp313-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

material_color_utilities-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (330.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (362.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

material_color_utilities-0.2.4-cp313-cp313-macosx_11_0_arm64.whl (269.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

material_color_utilities-0.2.4-cp312-cp312-win_amd64.whl (251.2 kB view details)

Uploaded CPython 3.12Windows x86-64

material_color_utilities-0.2.4-cp312-cp312-win32.whl (218.9 kB view details)

Uploaded CPython 3.12Windows x86

material_color_utilities-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

material_color_utilities-0.2.4-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

material_color_utilities-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (330.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (361.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

material_color_utilities-0.2.4-cp312-cp312-macosx_11_0_arm64.whl (269.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

material_color_utilities-0.2.4-cp311-cp311-win_amd64.whl (248.7 kB view details)

Uploaded CPython 3.11Windows x86-64

material_color_utilities-0.2.4-cp311-cp311-win32.whl (219.1 kB view details)

Uploaded CPython 3.11Windows x86

material_color_utilities-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

material_color_utilities-0.2.4-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

material_color_utilities-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (332.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (362.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

material_color_utilities-0.2.4-cp311-cp311-macosx_11_0_arm64.whl (268.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

material_color_utilities-0.2.4-cp310-cp310-win_amd64.whl (248.6 kB view details)

Uploaded CPython 3.10Windows x86-64

material_color_utilities-0.2.4-cp310-cp310-win32.whl (218.4 kB view details)

Uploaded CPython 3.10Windows x86

material_color_utilities-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

material_color_utilities-0.2.4-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

material_color_utilities-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (330.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (361.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

material_color_utilities-0.2.4-cp310-cp310-macosx_11_0_arm64.whl (267.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file material_color_utilities-0.2.4.tar.gz.

File metadata

  • Download URL: material_color_utilities-0.2.4.tar.gz
  • Upload date:
  • Size: 5.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for material_color_utilities-0.2.4.tar.gz
Algorithm Hash digest
SHA256 731c8531deaf757de6798ce67281ccfdf34d85c60bdfb232d8f5f798b317d7d3
MD5 c9536be7af093de799c2f139e1655cf4
BLAKE2b-256 a9f92ae47dd2372b6b0f09a4fe00d806520b8e3e398cab023dda41c928bf0089

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4.tar.gz:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4c918e43d452615f1593232cf004bed5aa3219c85ef6e4eb3bfd14a2b356419d
MD5 8a2e74ea4ffed2e8a3637d2acac3cf48
BLAKE2b-256 39abd6945b9e98fd274793b0c65977582a0c9e0adc429dd6b8a9f8a88db1c13c

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-pp310-pypy310_pp73-win_amd64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb8f0dad17262c724a20aceca18047180b21805c5e2cdf9b6c06449f6f3a460d
MD5 3f9b2f1fce4b1483e240b6e59b3a743c
BLAKE2b-256 2dd069c811d76d6277835090f9880f171615de085d17251bdc7f9d3a313a5ccc

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91872e796e9bb5068ac3317bfe8ae79cc138b3ae72e374a5a7f8d59573e239dc
MD5 d3f4c21451551ded5195c7f9dae706fe
BLAKE2b-256 49683d92ea58101ab56b10411e502a7274a2a375b63f939d9c580d5c819f8c27

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb191f8a33dcdc21c1232c2976c8e577949ba8a8239f9b6ba5480e5333298509
MD5 cd75728ea89b80d64efb8e541b83414c
BLAKE2b-256 8a5c9dd6e8483d6e9b152839f1059d793966df7ee36c38c260dcc0ac0baec3d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 04bcb7139eecba7e7f553ea928f7e8a72943fd7a978b9ce59e6d289c53f648f9
MD5 51372efad5f0a4804e0ef68703cc5fd6
BLAKE2b-256 076ab37c4c73d27bc160d74d534c95da754d85d80e4a704a1ea9cb22995b0c15

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 83280e1141ba2467b800c743593317f4d9884313771697ec2d03504374c973a2
MD5 65c09a775d2c0076f3a14c7e0491f701
BLAKE2b-256 b7828195abbb2dc534bc060bed5371faad4b20d29be2e31f20fb85b5be80332f

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp313-cp313-win32.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5152c3035d3aeffcfa0f56f6bbd6023e7cd9ba5b0caf78f9978005a0459095c
MD5 09536dd42afa64b376662d9bb1ed2f24
BLAKE2b-256 78f8687d199edc95fb16781c1c64b6d64d12ff79660c83578bd5a314c4cd7546

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b17ca39ab4137630602cc86694c1b244e9e0930ad494ea8c115b7ae2b60dc06
MD5 ce9dbd5c41e03a428b34105ed2b53489
BLAKE2b-256 740e496dd7cad3bf6f5eb8ad164da4e2c7ceccad75288420fd177aca1a08395a

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c6c57b9472bf8f50b6bad1f4baa571e1928a40509c3639cca616a9dd48b8f6b
MD5 77905e04cbe79b2dddae3529f99ffb25
BLAKE2b-256 08ba5c1d5d5a6bedc3c8e46df393004b19f184edeaece8b32601389ea069b800

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 633a525397d26f784b00cc9fbbf407c5b75d78bcf0b3693ae462754dd04f67d7
MD5 e0b73467ab421dee072d4976fda52215
BLAKE2b-256 153c57ee86a37fc5c9b36e741629842b6e005041acaf1ffeca6d807f09c2f9ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 774428134b556d3b971993ae55467ee3021337555639f1a353278442fd9b0312
MD5 3e05fcba5a9b48f18260a1e1b6384625
BLAKE2b-256 bc0e9b0cf563492b35ea6d8f9e95d261c5d429d5e93f28af1be97d64c5d99041

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 995b36f5f6db70ad6fa5ff6b63985fce4cfa992cb2acea6146a9c549889e406d
MD5 4133be2d5afb90a39d0c0dc62040956b
BLAKE2b-256 bd87e3cd7249ebd5013dfcbbefc194427e9e485de0a8c4d9ad97651a4de18e93

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 deeff18f56807953b385957b30c9705aeee3b0fe4cf480325729a2bed52c10b2
MD5 ad875f8921f210b51b2a25d243189286
BLAKE2b-256 73bd1507624d88a28b1ae6be18789116d3e89c33cf4f33b51a0c3127f8b1769c

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 609dfd2daead9fd773ae17c96eb18d23d281b5d6010cb1af2796acdd4cdbc7c2
MD5 ab2038afd4df2d52be490f7584208b2e
BLAKE2b-256 a8fe7e70d7b46568aa922e4990e897ebbc738215e766274e77e3d8040fd70b7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 45adfb36120dcdf9421cc029bef9891bd879da2f1aa68d28101086d489bba674
MD5 1370d82f81c1ba6b70fede124697a9ac
BLAKE2b-256 e016c7e247bed1980fe5d5fddeb328f7809f9b730268af37932f97cec06c256a

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd44069fc8b1d1ff5d05bf008e46e58f9d10e153adc712c11ac3f38398bc692b
MD5 f0f5e8e8c844239a66c3e79115da2286
BLAKE2b-256 b9b52196f3fcaa94f6e163309be216ef2b54f3f243a8b3e3da23b620b9ec1cab

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98780466260ccbd4f604172e455f59f0a89a5b07ad7f987e908a2660921bdb18
MD5 6db700e35a8e392b40e83a770a16a904
BLAKE2b-256 8b392b89666674fa560d29b60c9f44bc18dbff334798eb52ca684fbd18cf65a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf38ac1602b0796e7fcc0e71d6f0adb4bd4e4422fbeb4504e091be062a65e972
MD5 60fcc010e9485a8b3380ad539084dc63
BLAKE2b-256 852e69994e32a2ca4deb93a295e1ee7c8b78da24550d8084cbcc3409e006c85e

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e4db62159bb9b1497143dc83b4c848db350f8af53a4e1a2eee842d7034ba2ce5
MD5 6a2396704cc0e027808c9125bf679b36
BLAKE2b-256 3f603a4980e8594cf8eea3c075ab00c7034f20431ba223a5fa1e14d15a002e42

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e76a33b899d2f746ea61d38c18502c2b33890ba522f6a2fb81bbf2c00c4a02b3
MD5 bd57ec5c9a44108ba112a43b8bbfcccb
BLAKE2b-256 9c04c8541a323c0bd1b6c2146c871e3c3650914e9f381151db1fddc02473195e

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97356aa7f3a55b99570307613fd745ec86ad21b8faad48954d247a1b6eeec710
MD5 4096770174806548fbb1293f5b996d0f
BLAKE2b-256 458288ebe9533fea13528281eb6fe8fcd0e5c7a20bdb796a7a0e952765fc5607

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2b41f98b3b8df56fa2b3cd48fc7c9f00ea2235ce2f4441ddfdae0748278f05d6
MD5 dcd2fac15e393070c88fb4968695124a
BLAKE2b-256 76793394b54127465fcac5b6702c20e8c20f94a2d7606929c1cb9fb136f7f0ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9db3d02c6a8ad7cfe40904f70a82f88739d2423e4271b0b6df5cf7da03ebacbb
MD5 1b3410cdb16178e9949072ff39757d58
BLAKE2b-256 bae4b0fb6a93bf1226166fa88f0ced4386a7d5b8d5993df8e0029b9524f09d95

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b636fce3707a9af279741e4a20c6132e080380d2d9eff5451c8528d2c562f7b5
MD5 3b39432cdaa8ced369efcb0ac397fdc7
BLAKE2b-256 48a41b00ad84fe8e1757f84661157d3539e5f5aa65a689eaa60eaa5dfe5ffd0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c9dc58873466cb0a6952b06497f38bcd09f1ee1efb1e381cc5aeb92a824aa73
MD5 26e29fd573c057959447532c3950b92e
BLAKE2b-256 c7593fe1f73c852eab9460b44c72ca83c4209018126ef48aca9ae80883e6b6a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 120ed24d73dcab3f52bf37beca32acd746cb423ba995f49d3d0543e46d861146
MD5 b4fbce8e7d6b34b232dc4df52a782588
BLAKE2b-256 7f3f3e7813d26da17d4d8a4bb9dd9a86af47a14bc7cd13342dab5f8d9590bce6

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c4f12f648ee74df5ab14e9f12ef4171817a8cc8ee4777b786883eb78605daf0b
MD5 6f3b3e6783257b05a132a807ef3f76b1
BLAKE2b-256 7d3f7f4374d91acbec1a6e9f675b4b4bc829896971a160b0e584b83d15207d46

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb903d252cffe8342c1d43789746fdc1e42e0bcaefe45675821808a9dc3b223f
MD5 bfa91ace72fa2d219c4f8b7b32053845
BLAKE2b-256 530102afc24595302890f58301c9ffbbccfb757c1c885d0ea83a5d38ff271fab

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 34b1db65705284a5c52f402b9cd47dbab40af7d696b169734191bb16cced29a5
MD5 1f55fac25409249e7b3e291d44f2fc90
BLAKE2b-256 76414b9ef5c98e70540643f926be1418723b645b3bac7552f1a10562992603a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b05a1f844d474d970f4e0c2d335b4500a2c98ef50b5c0fc002105dfd611b85b
MD5 38935b7159f6be8e738dd79b274d87d6
BLAKE2b-256 46630f953f6fc9fb90e55b44c9cde3d1cece943afc0d9e838f615446511525f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9e91f2f64d3f5a275ada030089a46950e4489754b6449f1dff59e786b962ec7
MD5 2e730e971719621092e5f18a8949ed8a
BLAKE2b-256 e0f916d2cf81dabd86b518b61288d0186d55d8a28332ea4677b5cf5797baa7e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.2.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa943cdedc1f5998be9644953bc37c343e34e95b19a3b2ad79a5a8598cc4922c
MD5 c484fde0e053ee7268c33e6eff2fb98b
BLAKE2b-256 71d4a3886558753a678e116fbcbded41fdcefdf974fd723e965f91e6d6f0a5f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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