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

Uploaded PyPyWindows x86-64

material_color_utilities-0.1.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (262.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

material_color_utilities-0.1.4-cp313-cp313-win_amd64.whl (243.8 kB view details)

Uploaded CPython 3.13Windows x86-64

material_color_utilities-0.1.4-cp313-cp313-win32.whl (210.3 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

material_color_utilities-0.1.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (356.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

material_color_utilities-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (264.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

material_color_utilities-0.1.4-cp312-cp312-win_amd64.whl (243.7 kB view details)

Uploaded CPython 3.12Windows x86-64

material_color_utilities-0.1.4-cp312-cp312-win32.whl (210.2 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

material_color_utilities-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (355.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

material_color_utilities-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (264.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

material_color_utilities-0.1.4-cp311-cp311-win_amd64.whl (242.5 kB view details)

Uploaded CPython 3.11Windows x86-64

material_color_utilities-0.1.4-cp311-cp311-win32.whl (210.6 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

material_color_utilities-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (356.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

material_color_utilities-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (263.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

material_color_utilities-0.1.4-cp310-cp310-win_amd64.whl (241.3 kB view details)

Uploaded CPython 3.10Windows x86-64

material_color_utilities-0.1.4-cp310-cp310-win32.whl (210.1 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

material_color_utilities-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (355.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

material_color_utilities-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (262.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: material_color_utilities-0.1.4.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.1.4.tar.gz
Algorithm Hash digest
SHA256 0b25b824eaf7241688da0cf27a71aea9224a7b8f693ec8915e4be00a16b57e86
MD5 fe83885e03fcea09b3c1c26d5dd3e539
BLAKE2b-256 660aa7befaee96d1138c2bdf7f740aba157fab236e12c00a44612efb96d33a40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 85034fbf8d617637cf0baef69270962490284234b191fce86e24e4ce41b124f3
MD5 0b176a0ec318d27f011df615c7a45ba7
BLAKE2b-256 39e55d845a641d84623a471e6149a55235c516dc09d307644099fc9257013003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6215b282f478a1e4af97956e254704f3affcd4e8d809e0440b51d6224a9381d
MD5 1e18b117a4daa9c49e60da330b36e7ee
BLAKE2b-256 0790a35513238bbbb440bf9c35acdb833a2b529d03d9a868b290cc128a6a664e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0102db8f9a33ce84d7b8e06af012290348d475c6ab3a4fe4fcd733dd91f71487
MD5 148e010f9cef320f45de42b913d8c3b4
BLAKE2b-256 8672203adf0311cfb1bff1babcd82e55d956982cdc5fef7ee87d22b16fd1421f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83e0a02aae48c1b637726492b96220a27117edfd3d874494fe93c0a7eb8bc64f
MD5 6e181fc1976ed0f7f5e5bbddd9748763
BLAKE2b-256 3923fc7b34bfec2834f9d30a19883d18bc32e67fb7207782c1836e79264d6620

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 575992126ec9d5ba59a6428371bc9715bd8c12695cbb558ee08d825fcd361631
MD5 f521e3bd39817d7d874443533511c8af
BLAKE2b-256 ca23042eea9bd2fc6f8f88424937ee6eb4d1e1711cf92ba0f3a4e516247fe7d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4df380039d563ba5904c86a479b1e637789729da87e06f5c64f63dfc1fa4a35a
MD5 89ed5c0a51286a0c4ee49ab94b0b837e
BLAKE2b-256 0bee605d04ae3b060e5b0e837cb412522a6331c077d9c1b75c6398776686501a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e19601eecada80a7922f364512655c341e43946fc34f567beb0a3cf4034b2757
MD5 c3994e1cc572dc2cb8aa5beb98aeb135
BLAKE2b-256 801bf6f0f9828d7250483102de878ead7f5cef0bcebb4624aea4f9bc09812ffa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a6cc93601acbec009ab558a94426e8a7d424d858667ada82576c5ce754406475
MD5 53c47763190dbcea2163f2813b884ed2
BLAKE2b-256 8e91c561f5b5032a54aad6a011365b4294384e4cf31095a7d6e0bce16520bf47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7be94690b4e335638ea8b43d13e7bcb5ccc37098b699920212dcd2a87e6471f
MD5 120c31cec77ec112e0688c949fb603c7
BLAKE2b-256 19bc8cf71f2163633174f6c2a345ca0edd2fb2e06de2412b099196819df955fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 601a20ba8fe095923bc9c34b78e89ea460456adc45b9f16d3d10a8eda3200df6
MD5 a9b4ab963d4c12fa2c127e51c6d6bd5b
BLAKE2b-256 639ff0eafb5ff804d7511ec0061fe07d2378091a14e37d2964f0c83ae0a3d86c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b97b3442ab3a6ca7dd714524dc322013b8cb02e349989746e09819850c75d04b
MD5 95ab451bd3f7cfbb2c7c75bc93a72964
BLAKE2b-256 c8e7fea56fa899737eb427c6f21746a78df958e3130be6b679d499262acd72fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 926a532f45443a1a81cdbcac1d8d9284b36a73518d1ac20c7ab07687f06027fe
MD5 2398734f3f689aec95bea953c9d290af
BLAKE2b-256 25cd1d14cb16d1448e6ac476ef02ba809bd5efa976a577c73fadacf6f046b3ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a920b5427c4d65fb089944bdd8cd9ea1f5ca1ff85e8d139102a2bd3a86847d57
MD5 0ee61912b06eee78f4e590f74c95a8cd
BLAKE2b-256 abd6db8e34782970a2c0aa8a81338d9fbc0864e282c2e597e89c8b3f655ebee4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74cdd06b98097062cd82eb8e5c99f109886839b5b8600856e7fecbe5ca2c2f04
MD5 a7365c59aaccfab737e8cadf58c6cfce
BLAKE2b-256 7cdbd4746d3a058320b223fe1917f976923481e199c36790a909a90d20b65faf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 281e9888a258bc0f63ccd8e7c9116a2abdd14452c2ca8aaf3c1be2690c04409c
MD5 cb2f300c2030406206be2e31dfc63338
BLAKE2b-256 8f9de8c414242ae14807d7cf9ba0ac61bd965c7539161067e181accc7a278352

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5c69583e2215381f3580532b2d37d33eb7120b00b7eb06bfd12f1bbcec0fe30
MD5 46434395ccabc9bacf48b8e19ef6983c
BLAKE2b-256 6bd25d6eba9837c3e11c73339e7e3be49d38c8542c9d8db5356857d45eb73ed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 443c46b77394eb83239327c27d9645ccdf0beab4ec6e89b16eea74ee59423624
MD5 b7434989b601b35b5b34b90d06eb51ca
BLAKE2b-256 32b1cfd5b7707d350e0ce4e0fe118f39b0da1a5b65c343a02ff7cc26c6d04fbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d868aee64b452221a57d941d54eeecf13cb4de031ecbe4f51640b14f89a1179f
MD5 24a46a47bd2548691ce5626f579d97c3
BLAKE2b-256 bf1cada9657e301cc94ffef9b28545c3cfdd002ff245b365ceeb5e732bccf67e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fd166fe37e1b40bde9689fe652a94edd76ebae0866da612092d40ed53eb5d636
MD5 d9e7e792f0487001577e7308da51a2e7
BLAKE2b-256 d9f2e929fb4529bb81738a1ff1c5339c5e6bbd72a56dbae0372304a06629fd66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8f3172cfcd75f2bcc76e25bb3ee6419ea6bd15a2fe766a4416f956bbdc6d64d3
MD5 3de137b767fdd45c6667e8a81547064d
BLAKE2b-256 cbcecbdfd16c4e3bad9ef3816e0f84df0265f83db2cc50de56ec9c4dd36bb73c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ce8b60c03478e93732b7c9471f39045a52472cda12ea65ec442e47a9823c6f8
MD5 f412cef8f19c65b98390eb6f75ae54bb
BLAKE2b-256 a3b05af2dadd6b96832597f3c2446166193fcecea7a424872d75c16ed22c71b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ece541f5d2c732c345ccca3c762b3bfc9df0a6f9bed5bcbc0c0543b38eec4d15
MD5 23c93ecfa5b4d68f81a793800e713798
BLAKE2b-256 e6c9f304cb6186803bcbaccf0b5c05469516e9325ff56706aac4d02bf0529907

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f41c2419939382dd8039a22eb702d363bb5abd345133f336963a743789e2f33
MD5 1bdc2bbe034169a257e2b156e048c428
BLAKE2b-256 8f93859aa44eb39ce006881f4eb65ec0e263c115bbb2c9b37c37568af94129fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd68f855579c1756ec97f19984c3fe85247c0955fad3bc942aff83fd42a1bed9
MD5 c60a1e02429aec42c3dd79f5e9700de3
BLAKE2b-256 bcca626c39df0fb31e524a85dead3a4d463703de2f3f50e1e5891649ca8095f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ace800df35b84311b7ca5fc109844541b9eb0335db37b2e2fa1679be8f9d1e9b
MD5 0e86d494bcbdb880a2f503fd94c33895
BLAKE2b-256 353f9752b0244e7df0effadb11f5582dbb37d0236d95a3dd8ed7060e04da7be9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 78699cd632edef736fbf5a89f1843655c684c0c415854b0590bec78a05e24951
MD5 075a10720473883c425177cf0fd337e0
BLAKE2b-256 00d2b5c200b3c9a6243135dd224be5216a1846a21cef5a6c9a1b7900341ea02f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2a6524a47edccd90a1ec3fef2ac0f97a7da5e4d0f642ffe894def48e1f2b7493
MD5 95c8b878cf0b33154836efd2c0024531
BLAKE2b-256 a4d74fd530e73a06f31e4a3f35ae68e3e069e1b4a0fa238da341c503f208bad7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f78a568b09560a674eac5af9d09ca1d33f8ebb870a8162ab82bec188b6d27bfd
MD5 67e6bfd36392afc5c04017f324e55476
BLAKE2b-256 8472319982d3b3ca0667097918004bc40fef835fccdf947978cb84b2f87b131a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8081401525c75bad5966564f7daf1ff50eb9a1cce72be12e54afe746535fa1f
MD5 b35f8ee3874c02f5a7f603735098459e
BLAKE2b-256 16457f7c3b9bbe03b3d92815175e72b80f55c6b385e94e62cac25c97a80aa276

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 682bd518631fbf8f948b01adfe06d2d884733aa3836edd8b3c4d684fc62cec74
MD5 2bdcf72bad9e2fbef80c8937ff068b9a
BLAKE2b-256 85243fe50c6bd685661fdb7e69ed30d5efcdfbc03550bc633a99cb0e827eab95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bcb24ac156b8fedea6d86052df54747871eb2c6e86141e94e8e04d5e68ef27f5
MD5 b9298f50a93889d597986f5953568d0b
BLAKE2b-256 061be27f10cf90b530047fe87b2b6bad4cf1901bc300b0340327da10eb452525

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0cab7b9a6bf84f03f7d3c72fc8308997f324200cea2974a91968cd2a96fb6f3
MD5 d9a21d556bc6aee365fea1bd5c8a868d
BLAKE2b-256 cf53b4ea36b8917ffef0bf4ea12390ac4e894275ec5a8bf53dfacc27086190f2

See more details on using hashes here.

Provenance

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