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", 3.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, 4.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

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.1.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.1-pp310-pypy310_pp73-win_amd64.whl (244.6 kB view details)

Uploaded PyPyWindows x86-64

material_color_utilities-0.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (265.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

material_color_utilities-0.2.1-cp313-cp313-win_amd64.whl (247.0 kB view details)

Uploaded CPython 3.13Windows x86-64

material_color_utilities-0.2.1-cp313-cp313-win32.whl (213.4 kB view details)

Uploaded CPython 3.13Windows x86

material_color_utilities-0.2.1-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.1-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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (359.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

material_color_utilities-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (267.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

material_color_utilities-0.2.1-cp312-cp312-win_amd64.whl (246.9 kB view details)

Uploaded CPython 3.12Windows x86-64

material_color_utilities-0.2.1-cp312-cp312-win32.whl (213.4 kB view details)

Uploaded CPython 3.12Windows x86

material_color_utilities-0.2.1-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.1-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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (329.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (358.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

material_color_utilities-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (267.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

material_color_utilities-0.2.1-cp311-cp311-win_amd64.whl (245.6 kB view details)

Uploaded CPython 3.11Windows x86-64

material_color_utilities-0.2.1-cp311-cp311-win32.whl (213.7 kB view details)

Uploaded CPython 3.11Windows x86

material_color_utilities-0.2.1-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.1-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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (330.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (359.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

material_color_utilities-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (266.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

material_color_utilities-0.2.1-cp310-cp310-win_amd64.whl (244.5 kB view details)

Uploaded CPython 3.10Windows x86-64

material_color_utilities-0.2.1-cp310-cp310-win32.whl (213.3 kB view details)

Uploaded CPython 3.10Windows x86

material_color_utilities-0.2.1-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.1-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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (329.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (359.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

material_color_utilities-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (265.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for material_color_utilities-0.2.1.tar.gz
Algorithm Hash digest
SHA256 61595aceb69ef3461b5041e5fb4c676930cbd258c906e9efcd3ac468ce82b529
MD5 db255d004de0b411918f9c91f9381e75
BLAKE2b-256 1612081dd0a9841e861f180c2dd79dd6e5b7529b8a2b63b7eac85803f77b2331

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1.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.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6b821f3d419a38ac424c4cf88dfc86241abd26bae9c1a86a137d0925dd2e0448
MD5 50d1e4379f2f77b80bfd6ed4413d0462
BLAKE2b-256 0bf6d1a816de6cc4e3b720a1d3928ed309727a11dbf1fd1f0109a845db0b916e

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04444e917b5eb9fad1ae42f2837ce05a2a905b0978b3472b939a4a56c7f7eced
MD5 6f29c999379db5975774a6234def5fad
BLAKE2b-256 25b99a5dd476519c1d4d66c6c9013f63f5e51e7f7c32e45bdbb8eba8d609b7ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2321551542667c609c2f5ce3638658f84627b1546061174e3ba5c7773ff98985
MD5 03a413c6118996b66dc3a6d38715e96a
BLAKE2b-256 9e25e16918cf7870f6209ac231e27d5e227d8085547e75ae6c2ca477c3726135

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0748f9bdc6c4b5b0d163c56dc29b9260bea2dcff055ef6706fe63f9b0f66584a
MD5 13c743cb5811e71d72bf2fc0d0a957c3
BLAKE2b-256 977821e5f555532ae9aa3e3a0ad46d83572ef205d7877623e5304cc7341ca98a

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 84be8f6b3f8b3ff97c92ab01f34ba9d792cad67f445ef3035dba3ea34543ab37
MD5 61e11d6a45cc650e640dca16ceed433d
BLAKE2b-256 aca2cdead9ae4f38eea1c9a4a1dcd1789f9efa794ccd33a619d52ec33edd9c1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 141317b30ab2f564c669dcfbb25046985252f070aaa7d6d4d9697b69fc3c2b40
MD5 30cd63084813d4c977a9bd22f0ba7a09
BLAKE2b-256 fca3682e5f90c3d675fb42d9f98f999c91138c8903664e70a1e90c24163b5bd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6214bf8717903ffb85c544955b187ab9233e2d20c8af510e279f3133a950ab9b
MD5 e330397a9aa2fafc6b89421bdd7c7cc4
BLAKE2b-256 95406541734376fdb7e5721b8a2eefcb4273918cabe64f55e3191e9b7dd1edce

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99497c63141b781cc92551ad2735b4e2dfe5342e7aff0dd37017c23c168e0537
MD5 07a47208dff7f01db0c45c4c4a96d82c
BLAKE2b-256 b71d7668ad8859f1906d99d9060d369a891e5af32453a7283687ee585686d23e

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab975076fcd872797d7d813011bf8dbc1e533f26c41a432d5adcecd8debb6222
MD5 8166e68092ae380389dbe3b95220d4d3
BLAKE2b-256 358c0e5bf90c4eead331c3d0ef7cf38a82bf1706737f0ddacd0416d3421e8583

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 63c58303bcd0bfae5b2e168c3e02abb331ede656f7a78171327363d62d87ff72
MD5 d6bb3a93f9dc97a3c872678ea1cc899b
BLAKE2b-256 a85a623538f1b1fd0c1f43207d348e25d662881afd482bc5ec65dfe130384740

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6381f1acbdb4b45e8931c2d481b2f5ca6f6c627f91789b1b951cb557854ed554
MD5 17604d83de1a1aac355f5f072c2df29c
BLAKE2b-256 23198e6aca38aa59147824c792d9519da652309fc46c7425f76238e1191b557a

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1510210905fb53862b8cce34a1bba7abacf7198c9c4c99dc601e18d56cd9ee96
MD5 f0084a0292e462d2eb7f0fdfdea41789
BLAKE2b-256 828176c8b93010b7b0e52d89e5868263b45ba60af3223a7f3fb3049c7c3b0c14

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5148058882c515f62b109c304eb16a3fd55da6b0a699656ebcfa701846b33337
MD5 b58d34b1f625ac17672fae4a1ed450d4
BLAKE2b-256 b1359439bf7920b73f125273a02ef029834e800636a05eb5908a415d845b7f95

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45ae9ef53d9b07920c9a504a1abbb6e4752c91ebdeea2bd333d923281d39df7d
MD5 e56cfc2c6b740c0e849d7bc4ccf3228e
BLAKE2b-256 3976a801994609d6e7b981e07f4a325ef9d0c99534c1b0263312b169ee2c05d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ee22bd73dfd73c0991a7959f3b55fac73ea81488bcb7f72a2a53def8f35beb79
MD5 ecf93d5904eb242f7857e8a408f877b2
BLAKE2b-256 325e722d483381243e7d74439c9af34b59733de0403883a63f47215689130917

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd45ad9a2c8969a9495f48ce1fc23da87025bd77115f939ac9d0341581d5e303
MD5 1c2e122411e322b10c51460db8b52ad8
BLAKE2b-256 5d2b1ad66764d6b178b659f94ce4ffd5afa2f8b53ac9d12196af50de22f9ab16

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ca17cf24755fabd4a6ae1415750293a66233ce2d80ba8d8d66495f653e9f6cc5
MD5 13a88e29dcd2ade270622d21af634689
BLAKE2b-256 2bbf6ebee2038d85e990793b3fa4b4e81109922706489cc896cd78b9ff997794

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 964294782addffee463f6b3a9d153fce656a09206c08c5b5d67ecee9d3c94f4e
MD5 99a08e09446ddf08a506be845511ca3e
BLAKE2b-256 cfaa61ba8493c5c8ac2365f0e08c0d045c6408266a4a1a318f66f238d3dfdc91

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c37d04aa1d9a4d310a8d2e278d7d9f359871d1e1d00076866a29d51746c2de79
MD5 ea6b414356fb93cae5cae2190b191bb7
BLAKE2b-256 87b627a632c743ac150f618fdec9f02e2cde7fbd540d23eeafcf5c11fce085e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4f509313ac3e132f8ced405499dceb11abab8926f6e563e3a2e6fd01587ba5c1
MD5 77f1b1433d8f159396423f42d0dbf96e
BLAKE2b-256 5700cef108357975b1d14c8010b303365bc5e3ba92b19b442306910cfb3bbfdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e6df972a447960df7e9cc4707315de06ad332de7fe9399e499fe7df06edc086
MD5 f4b304fd176053026b7ea2f610adf73e
BLAKE2b-256 fafbde2a85b37762b3e8e4c3926617e8fa502ec65a24e2081b13e1d6bc914f99

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5cb3036bbb151f1b54dea25ed1be51277e9a8925d537cdaca39e663995e327cf
MD5 7b42cd05e8bd1577f2a4ab5b6793b92f
BLAKE2b-256 0fee58b6d1084bc3bad3a475cc3464559626a6f55cde59bf358e98c1d143806b

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5de444a4a06a4ca69387c579a763b62a991579acb6892f31e938346ed14f86af
MD5 c3409337679f483a4afb27699ebf253f
BLAKE2b-256 d70ec873dcc477fe2b249026deb1b3a8e8da9377b3fa3afb5e3ae74a7be41d19

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 16cbf8fd090b6fc8519d16dd17cdb40c6f18f656c726f5a63bd58f39696a2c43
MD5 2a8dded324369580a451151395cd6739
BLAKE2b-256 57f93259abcf0a328c7bdec39fc1ff005b2d7ccfa555e95ef770a5016c0e699d

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33f48c4f20578fd9c622956400f764675e73e49d042c7f0b55094cbb33fbe73f
MD5 d1194d75918a83b6dd432364eed483db
BLAKE2b-256 661a9e5a330d82d6a768c5e1f2524a09b4af681ad18a250520da89b04df37738

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 02990351b95b4ceba724fc4db904b5316e998b410aea44d080f55ca68e5d480e
MD5 c40bf6ae071a409f512a41d42a90c7e0
BLAKE2b-256 f016a2d4e59255a66788a4dc9938c27002fbff32f23bee3f87bd79e045a596f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 43fcabcf1c29285552089d7c588610cfb72d3dcec8b54a2d3a6cb6eb86bfb2ac
MD5 747d51e9ddbcd37ca6941cfa0897b636
BLAKE2b-256 afea938a08caf3d5eed7b69c41f2f2e0004026f27836406a8a27119a404d03a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 256831580f7be224b3859a36e4e2713c841ad63703b43485b46d2ac9939b7dde
MD5 c42dd60095cf75ee24da40d4821d1464
BLAKE2b-256 17758187bccecf9fc7b49599b7b96ba4b0700fe590842dde71a2e1bfb84f08f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 217c0d149f67ff5986872e09b2ec96c9b7041315ae488dc9f0e0bdbd48b3f761
MD5 aad3e6806e4643503911c2225140527b
BLAKE2b-256 a274af4a52a416e6f16fcb1e018a4747c9a1cc6eb883ef0bc6b7b1d5dc2c44eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2245cbd523c1c9e435906589330e91415a135d49e2bf4f74700fb12ea48d0052
MD5 07591ee541d2f04e9cf052e52b9f89fe
BLAKE2b-256 6f4ee83e014a871ff20044eca70b9516d98f5f65e473682e5969446a56c329a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0654c734cc47f67532d6b4dbd05866c4f429bce70b96eed29825002aeff73b9e
MD5 27aac66cf1d43538b283b49d1db73a31
BLAKE2b-256 bec0bd5fc3fe33794fce19ebb9c14940fcaf8ca0276707552343538d952d369e

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 840bb2af0edf5b8f3a4727c9a09933d47e6e7b0ec728b78eb13eda7effa0ac99
MD5 e21db34b68396ea2855de524b7f102de
BLAKE2b-256 5ee6412f4fc2e064cc131b5b5f1044a42cf5eacf35c0c2968d4b6fb27b4f05ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.1-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