Skip to main content

Python color getter (including method to get random color or complementary color)

Project description

python-color-getter

Python color getter (including method to get random color or complementary color)

Setup

python -m pip install python-color-getter

Method Overview

  • get_random_color() -> tuple

  • get_color_from_stylesheet(code: str) -> None

  • get_complementary_color(r: int, g: int, b: int) -> tuple

  • rgb_to_hex(r: int, g: int, b: int, digit_cnt: int = 6) -> str - Argument digit_cnt is digit count of hex color user want to get. The value of digit_cnt should be 3 or 6. It is set to 6 by default.

  • hex_to_rgb(hex: str) -> tuple - Argument hex should be 3 or 6 digit hex colors like #DDD, #ABABAB.

  • lighter(r: int, g: int, b: int) -> tuple

  • darker(r: int, g: int, b: int) -> tuple

Example

Code Sample

print(PythonColorGetter.get_random_color())

print(PythonColorGetter.get_complementary_color(255, 0, 0))

print(PythonColorGetter.hex_to_rgb('#2c2c2c'))

r, g, b = 44, 44, 44

print(PythonColorGetter.rgb_to_hex(r, g, b))

light_r, light_g, light_b = PythonColorGetter.lighter(r, g, b)

print(PythonColorGetter.rgb_to_hex(light_r, light_g, light_b))

dark_r, dark_g, dark_b = PythonColorGetter.darker(r, g, b)

print(PythonColorGetter.rgb_to_hex(dark_r, dark_g, dark_b))

Result


(211, 195, 123)

(0, 255, 255)

(44, 44, 44)

#2c2c2c

#3d3d3d

#1b1b1b

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

python-color-getter-0.0.1.tar.gz (2.8 kB view details)

Uploaded Source

Built Distribution

python_color_getter-0.0.1-py3-none-any.whl (3.5 kB view details)

Uploaded Python 3

File details

Details for the file python-color-getter-0.0.1.tar.gz.

File metadata

  • Download URL: python-color-getter-0.0.1.tar.gz
  • Upload date:
  • Size: 2.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 CPython/3.7.6

File hashes

Hashes for python-color-getter-0.0.1.tar.gz
Algorithm Hash digest
SHA256 1b2287f7914e21b4cf7018792951e7fe0c0d0e7cf42283bfd64b2233aade14d3
MD5 da7190eb04426f62dfb55a01f98e1614
BLAKE2b-256 787e45e4ac016e2e44eb8cc3d8dd128135ad2e2a841a97bed5283427ce2387ce

See more details on using hashes here.

File details

Details for the file python_color_getter-0.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for python_color_getter-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 fe1c44d202dd7171224552e98eb1e45fdd7f493d3ae815c78c97bbd9c3c50267
MD5 3968f4fbe5edab00c84ae18baddadaf2
BLAKE2b-256 01363a14037790683e5c2fa82f9630b2dd8ace499e7fe0e41971f83e810c7059

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page