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

Uploaded PyPyWindows x86-64

material_color_utilities-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (264.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

material_color_utilities-0.2.0-cp313-cp313-win_amd64.whl (246.6 kB view details)

Uploaded CPython 3.13Windows x86-64

material_color_utilities-0.2.0-cp313-cp313-win32.whl (213.1 kB view details)

Uploaded CPython 3.13Windows x86

material_color_utilities-0.2.0-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.0-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.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (359.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

material_color_utilities-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (267.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

material_color_utilities-0.2.0-cp312-cp312-win_amd64.whl (246.5 kB view details)

Uploaded CPython 3.12Windows x86-64

material_color_utilities-0.2.0-cp312-cp312-win32.whl (213.0 kB view details)

Uploaded CPython 3.12Windows x86

material_color_utilities-0.2.0-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.0-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.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (358.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

material_color_utilities-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (267.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

material_color_utilities-0.2.0-cp311-cp311-win_amd64.whl (245.3 kB view details)

Uploaded CPython 3.11Windows x86-64

material_color_utilities-0.2.0-cp311-cp311-win32.whl (213.3 kB view details)

Uploaded CPython 3.11Windows x86

material_color_utilities-0.2.0-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.0-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.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (330.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (359.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

material_color_utilities-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (266.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

material_color_utilities-0.2.0-cp310-cp310-win_amd64.whl (244.1 kB view details)

Uploaded CPython 3.10Windows x86-64

material_color_utilities-0.2.0-cp310-cp310-win32.whl (212.9 kB view details)

Uploaded CPython 3.10Windows x86

material_color_utilities-0.2.0-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.0-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.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (329.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (358.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

material_color_utilities-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (265.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for material_color_utilities-0.2.0.tar.gz
Algorithm Hash digest
SHA256 1b344bdb727bc6b856b59708e28b9c5e391d9297f4acc20961c55f3bef8dc8db
MD5 376e7a0a8498c1e723ccd4cce30edf05
BLAKE2b-256 1a23c59fb0a5089f5558890f71ae057097d90419700ab31beb5daa351b6970fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e89a0e6904eb0141f171fa6253712c77e9f4c854a3237a96425af5a10383a16b
MD5 4b27e28e918a66a0ed7c937090dba280
BLAKE2b-256 18f2fb381be72cbc16ae5879a969089d2d9d69fb452a51b73cd968783330778e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e634cd5276f5d118e0f2c7ba70874665f0054bd444185f38faa9371d87c145b
MD5 2d3cf9e794fa1a75a579c0ee58fcb034
BLAKE2b-256 5bace8ee3dc846c925ef1cbecd2c5a5793cbe37a5e4fbcdeb2704ffdad076c7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 432e2ce777c34b350c44b4d5cfaf526edb83ea5802fcd52606938c1879238607
MD5 af7b800153a1f8f9806ba372f033b29f
BLAKE2b-256 bf8a24cfec785cb2146af408134fa97155538fc70b98ef27d8f7bfeda7908d39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3bf8ae6b4fed4e39e77c9e32c956d539a88ce677f6130c54bd84ca238db9470
MD5 9ded2afa76983fa8999b75986b7018cf
BLAKE2b-256 7ff3fd4efae4ef4d283c7bab9c9a98f39e411b46657b26a7c69bb015f1cebb1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3a3fdfa7a3835aaf80cc2e40b186972af7252af72d8468d68af7d99afb72ee90
MD5 3572514c506a1922672bdcb9307f6705
BLAKE2b-256 398af80fbb7798c3b6f798884bf47bcc6f7e9945fd42a3b04bb8f660590f20d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9fd3e4d8882456506ae019a05020320b1c3e2657f8fbc425fc66d8b3fa08c27f
MD5 eab55f5c327ed4fef40b38e998ae02b0
BLAKE2b-256 89763aecf68942eba3364357f8069502a74eb5ea5ecef0eb4cd47aad2e02b008

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96124a0c607b96a3a571e247407b5ff9b657cca79102e9f3d0a1f1473a606df9
MD5 acb44c4f8264df93df265f50ddd140e8
BLAKE2b-256 2d1fcdfd747e2dddf743fa4007597e8d987e99f8b40a329511f9acd36cb57129

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d258fbce6120806a1fe200be7eda750e0113d3c01b81e5042e14d32a1b7c5116
MD5 ee1d553ffefc6f4ea41eaeb85b06c6fb
BLAKE2b-256 7efd8d8bdfec4166e10ba1fccbbd9f5fb4f7880b6edee6d50f1fc387eaf13ef4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35840132e024b779a7189e0d030ca47fef2fe88fc037d0603c8c7a1c3fbc2560
MD5 6333b55a773c44401eec7e82d83e23ea
BLAKE2b-256 148b9a2922df9482bc696e360d022a6cfa5a8c9cd0af9025a6a5b227f34dc943

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e652e41b2d5926e53ae00a66cb9f68bbc77f8b08b22a3fd5999286f3ade30e0c
MD5 853927c3b99e202c0a7555eda4637208
BLAKE2b-256 dcc804d3a7f2ecddd0ffe317b89a5a88299e697b1dabeea6779f8e5c13959bd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 467987c68071f0911a0340731fbf67d12cc95b772aa31a36a4849d81f34d6382
MD5 8e2c0e31af09262176cb20f5710d5ddc
BLAKE2b-256 79440ef4153e37cff05b96782a9a4e18f4f684aa0682b6813db7b22c61aeecde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fd16d753455e5e77d36b49d8c32db6dc75429ad7707bbff62746240be4a77e10
MD5 d7ce28f44ba0a78101b936417f180097
BLAKE2b-256 3644a06f113f122cf5ddc88b5dc986474bc7a5fce0f0d6be770fce20653cb26f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4cebb833801842faa66f245515ba21038140935926d484bb1788abe671d3375e
MD5 a2cb2afa3c5e366f5d225ce932f29e8b
BLAKE2b-256 2add71fff0181d831d0124fdd96d79f96da79699cdba38432ccb3b68353e1f4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bb12e52971a9824b0f0f25a5a37786b04f5654995d888d73189162f4b0360bc
MD5 a965fc0f8591361a8085d0121cc11aca
BLAKE2b-256 28e0f0860b05cad75708857fda8653ae2e7cb7728d6fa7e8abd38af73a2c394e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5778bbbd82f61fa73d15de861dff5630e453ea5c3a3f94c4c8cd9cc4e9e665a
MD5 1a06bd3773722650d9e8339da39c94ca
BLAKE2b-256 6fe0bd009d00ba686f3336973c1846d9747b7f9ce48b86051b49a1d4abab1838

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30bbf10ce68ff5f83a86615ac55324d3f472b3a89ea7487acafcc3af67c83ad5
MD5 64e5f741b7488e8da073b622c561b45c
BLAKE2b-256 d8f64e72d6fb63521877f8daa49c5c83fed33b841cd808c2446e816b20ec6a7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 04e6be479eab9a9319f8cf964ea906a4a8b6c09a6bc338dab0357b396e1d8813
MD5 48702e2e1d50ce1949f1d0b8dc4dd5bf
BLAKE2b-256 e6f73017342d9e3ef47ead3b5fa57417cf32fd63bf48cf1a8235e9fbd5c2a3ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d471d989f70f79e106d3ce072bec65d325d6d43b987e972a0cb077684ad9a2d4
MD5 efd775e9f0fb70b67b24189111f44fc6
BLAKE2b-256 8bf55450bfde39c9b40c3df643200e6d8a20c875f99c4bff623c0e42265c0f92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a914135e72429a6fc21ceda79798aaea8cfd5bfb7f836422ed0e4e621c084335
MD5 6db7a7e0fb104c1e0d9b5f3422b01ee1
BLAKE2b-256 dc477ddcebdef08a315a66f7b841714a508780ee3ad7d5f9145dbdd146b132a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7bbcb7843ade7131f538ca11114381d0419197140fcd0840989c86f31508be45
MD5 e4b0e48e542828cc460f8b75517997b3
BLAKE2b-256 7f582c60440a8fe050107b4c0879d953a27f87139f38dbd6ed9093d416443a70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8af0a70c95873d679346f9c6f059b18af0c315c20bab82ae55ffaf30dfda8924
MD5 b9f93ccd430a97c57a342d95408accf3
BLAKE2b-256 515df6d61f5c74d0754f30d666efaf1cb2f7b038c952a8d6aa3a9020bfae1b4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd946356d5330eb97227c98bb52e6103445a4c5f08f47f4abacfe7f928478679
MD5 d05edbb05deafe8ff9036263797b09fb
BLAKE2b-256 bb55d6a5384aa36276a219a248aeab652344e83c0e4885e2ec01aec95c91bf69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2aeae377a3f2d6a7266cdc9af119395f20f888d477a881e3f8f6214e953fc31a
MD5 682e11aad0cd2bb9005e561c84cece93
BLAKE2b-256 827ac970f0992b688b97e31075fdb5e36e0becc2bbbea53c0e89e1354801fce0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 63444fd946a8d21af7081be0747324351393327f9e03f65da7a3e727b4a2ba15
MD5 516ab200f0b85f4d9644a3ddf2c3f72d
BLAKE2b-256 6f7a860dc51d2b19ad7e67d35ca5bbe3c147d4b5e2be4107a165d08c07c8777d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adb67b7ad3d56bc8f38b83a28c95b0c9b0568c45057ee9b7f9ace05b7befcd74
MD5 e674fc4367b506e0c8478d009bbe2836
BLAKE2b-256 502e6833a2e2044eb843b73df71ab092eaeb2657b4380ea972866300f3614e94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 63cc4960d5cb51302a63f98ac117c6e9a85814bcc26c62466e018823737cc440
MD5 483653453f1d7ecce7dc1fbea40e2cfa
BLAKE2b-256 e7626c397ea146f3fd23367475cd03828acf9b33ffd4b7b7a1c2f3fd67ac4746

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8673da202313a2c7ab0f5fb173e38a026b6a0911f345f44309c0578a979a5f20
MD5 7f7d7079b2aae2292acb7509b24644a9
BLAKE2b-256 6ab558a82b84641c99fabae7b8db0b9ef527e0a058220ad704cad05452953f31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 832751e5f9b304738ce6a62ea41337392ae258151015f7a18a18f8b1717a6fd5
MD5 c8f30783b48194ff11b502f888ccf471
BLAKE2b-256 64743d80d824486432a723445989810fe7e21d037ef25921cb27c07ffac94de3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 782e161cae0ee364676e3e53814512f3a748559178ea9ed2d9a19b4407bdca07
MD5 66ee73b6615c3248d074f9daa771feda
BLAKE2b-256 85fc420f43a238f351d78d51013502856f30c2fb75ef14c25b56f53941169e26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6616b7c349e0d07b557ee766fde5598651fad95745bb1697c72792d4e0ca0dd
MD5 37dc9602aa366b6a32ff5438902d1c69
BLAKE2b-256 09579688e7b9d2d63532c549ee48c95cddbb95f536e376a9ec919cfcb7abb918

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 410bee33bd8d9e2c40d2235f8f9f7fa0cb7cddbeb4fb20d202b41b40309b93ad
MD5 449e0ffa24fcb0c4af4eee5598c3d564
BLAKE2b-256 f7f15e33278df1b90451144a5d6a256a196188d6d9d18ed4ee55520be0f5a5fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23b85d1d39ee55ceaf561d56cebd32df41973993c98dfd7d769534949230acba
MD5 086344f52863d0932481a32a8f470b47
BLAKE2b-256 6f835632a2dd4ca2db065f427d8adefd881142c948b61c666b587d5997cbad88

See more details on using hashes here.

Provenance

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