color_tools.py
A collection of functions for processing and converting CSS color codes.
I created this on an airplane flight because coding is more fun than watching streaming shows and movies. I was thinking about my Web Design and programming classes, and I had been going over number systems (binary, hexadecimal, octal, etc.), and I decided to write some functions to convert various web color coding schemes (RGB to Hex and vice versa), so I decided to play around with conversions.
Later, I wanted to know what the algorithm for determining the color contrast ratio as set out in the WebAIM Contrast Checker, so I found the algorithm and wrote some tests to see if it worked or not. The algorithm meant that I needed to break down some of the functions even further.
One thing led to another, yada yada, then I realized that this could
be a useful tool in my web grading projects, and there you have it:
color_tools
.
blend_alpha(base, color_with_alpha)
blend a color with an alpha channel with base color
returns a color in the same format as the alpha color but without the alpha channel.
The algorithm: new_color = (alpha)(foreground_color) + (1 - alpha)(background_color)
Try this: result.r = background.r * (1 - A) + foreground.r * A result.g = background.g * (1 - A) + foreground.g * A result.b = background.b * (1 - A) + foreground.b * A This computation is done separately for the red, blue, and green color components.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
base
|
str
|
the background color (must be computed and not alpha). |
required |
color_with_alpha
|
str
|
a color code as a string that has an alpha value |
required |
Returns:
Name | Type | Description |
---|---|---|
result |
str
|
the computed code using the original type of color value but without an alpha channel |
Raises:
Type | Description |
---|---|
ValueError
|
if we don't recognize the color value with an alpha |
Source code in webcode_tk/color_tools.py
894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 |
|
blend_channel(background, foreground, alpha)
result.c = background.c * (1 - A) + foreground.c * A
Source code in webcode_tk/color_tools.py
997 998 999 1000 1001 1002 |
|
color_to_hsl(color_code)
converts keyword, hex, or rgb to hsl
Parameters:
Name | Type | Description | Default |
---|---|---|---|
color_code
|
str
|
string version of color code |
required |
Returns: hsl: hsl color code as a string
Source code in webcode_tk/color_tools.py
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 |
|
contrast_ratio(hex1, hex2)
Calculates the contrast ration between two colors.
In WCAG 2, contrast is a measure of the difference in perceived "luminance" or brightness between two colors (the phrase "color contrast" is never used in WCAG).
This brightness difference is expressed as a ratio ranging from 1:1 (e.g. white on white) to 21:1 (e.g., black on a white).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hex1
|
str
|
the foreground or background color. |
required |
hex2
|
str
|
the foreground or background color. |
required |
Returns:
Name | Type | Description |
---|---|---|
float |
float
|
the contrast ratio expressed as a float. |
Source code in webcode_tk/color_tools.py
586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 |
|
extract_rgb_from_string(rgb)
Converts an RGB CSS color code into a tuple of integers.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rgb
|
str
|
An RGB CSS color code, such as |
required |
Returns:
Name | Type | Description |
---|---|---|
rgb |
tuple
|
A tuple of integer color values for red, green, and blue (respectively). |
Source code in webcode_tk/color_tools.py
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 |
|
get_all_hex_codes(text)
returns a list of all hex code in the text
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text
|
str
|
the css_code or text you want to search. |
required |
Returns:
Name | Type | Description |
---|---|---|
all_hex_codes |
list
|
a list of all valid hexadecimal color codes |
Source code in webcode_tk/color_tools.py
705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 |
|
get_all_hsl_codes(text)
returns a list of all hsl code in the text
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text
|
str
|
the css_code or text you want to search. |
required |
Returns:
Name | Type | Description |
---|---|---|
all_hex_codes |
list
|
a list of all valid hexadecimal color codes |
Source code in webcode_tk/color_tools.py
747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 |
|
get_all_keywords(text)
returns any and all color kewords from text.
This was designed to capture all color keywords that might be in a gradient, but there may be other uses.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text
|
str
|
the string in question (most likely a gradient) |
required |
Returns:
Name | Type | Description |
---|---|---|
keywords |
list
|
a list of color keywords |
Source code in webcode_tk/color_tools.py
726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 |
|
get_color_contrast_report(hex1, hex2)
creates a report on how the two hex colors rate on the color contrast chart
This functions compares the two colors to see if they meet the Web Content Accessibility Guidelines (WCAG) for normal sized and large sized text.
WCAG 2.0 level AA requires a contrast ratio of at least 4.5:1 for normal text and 3:1 for large text. WCAG 2.1 requires a contrast ratio of at least 3:1 for graphics and user interface components (such as form input borders). WCAG Level AAA requires a contrast ratio of at least 7:1 for normal text and 4.5:1 for large text.
Large text is defined as 14 point (typically 18.66px) and bold or larger, or 18 point (typically 24px) or larger.
from the [WebAIM Contrast Checker] (https://webaim.org/resources/contrastchecker/)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hex1
|
str
|
a foreground or background color (doesn't matter which) |
required |
hex2
|
str
|
a foreground or background color (doesn't matter which) |
required |
Returns:
Name | Type | Description |
---|---|---|
report |
dict
|
a map of normal, large, and graphics UI components with a result of Pass or Fail for AAA and AA ratings. |
Source code in webcode_tk/color_tools.py
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
|
get_color_contrast_with_gradients(fg_color, bg_color, ancestors=None)
gets a list of all color contrast permutations with 1 or 2 gradients
Checks all combinations of foreground and background colors when one or both are gradients. Creates a tuple of results (starting with contrast) and original color code sort by contrast.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fg_color
|
str
|
foreground color, could be any color type (including gradient). |
required |
bg_color
|
str
|
background color, could also be any color type (including gradient). |
required |
Returns:
Name | Type | Description |
---|---|---|
results |
list
|
a list of all color contrast result data sorted by contrast ratio (lowest to highest) |
Source code in webcode_tk/color_tools.py
778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 |
|
get_color_type(code)
Determines what type of color code the code is.
The only color codes this library accepts is hexadecimal (with or without an alpha channel), rgb, rgba, hsl, or hsla. No other color values are recognized.
There may come a time this will accept another color type, but for now, this is it.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
code
|
str
|
The color code as a string. It should be in the format of a CSS color value. |
required |
Raises:
Type | Description |
---|---|
ValueError
|
if the color code is not recognized. |
Returns:
Name | Type | Description |
---|---|---|
color_type |
str
|
what type of color it is. |
Source code in webcode_tk/color_tools.py
624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 |
|
get_contrast_results_from_ratio(ratio, size, is_bold)
takes contrast, compares to map and returns results as a string
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ratio
|
float
|
the contrast ratio. |
required |
size
|
float
|
calculated font size. |
required |
is_bold
|
bool
|
if the text is bold or not. |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
whether it passes or not with details. |
Source code in webcode_tk/color_tools.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
|
get_gradient_colors(gradient)
returns all color values from a gradient
Returns all hex, rgb, rgba, hsl, hsla, and keyword values.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
gradient
|
str
|
the gradient value |
required |
Returns:
Name | Type | Description |
---|---|---|
colors |
list
|
a list of all colors in a gradient |
Source code in webcode_tk/color_tools.py
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 |
|
get_hex(value)
Gets any color code value and returns as hex value.
Color value must be hex, rgb, hsl, or a color keyword. Determines what type of color code it is, converts it to hex if necessary, and returns a hex value.
This will NOT work with an alpha channel.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
code
|
a CSS color code value (any type) |
required |
Returns:
Name | Type | Description |
---|---|---|
hex |
str
|
a hex equivalent of the color code |
Source code in webcode_tk/color_tools.py
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
|
get_hsl_from_string(hsl_string)
converts a CSS HSL() color code format as a string into a tuple of HSL values.
HSL stands for Hue, Saturation, and Lightness. For more info, read the article from the Mozilla Developer Network: [HSL()] (https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/hsl)
Hue is the base color from the additive color wheel represented as a degree (0-360 degrees), where 0 degrees is the top of the wheel (red), and the values rotate clockwise from red (0 degrees) to green (120 degrees) to blue (240 degrees) and back to red.
Saturation represents how much of the color is present as a percentage from 0% gray to 100% fully saturated color.
Lightness represents the amount of black or white also a percentage from 0% (all black) to 50% (just the color) to 100% (all white).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hsl_string
|
str
|
an HSL color value as a string in the format
of |
required |
Returns:
Name | Type | Description |
---|---|---|
hsl |
tuple
|
a tuple of 3 integers that represen the hsl format |
Source code in webcode_tk/color_tools.py
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 |
|
get_relative_luminance(val)
Returns the relative brightness of a color channel normalized to 0 for black and 1 for all white.
The formula for relative luminance comes from the WCAG 2.x. The full details are at the W3C article: [Relative Luminence] (https://www.w3.org/WAI/GL/wiki/Relative_luminance).
Note: at some point, this algorithm will be deprecated, but today is not that day.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
val
|
int
|
the R, G, or B value as an integer between 0 and 255. |
required |
Returns:
Name | Type | Description |
---|---|---|
relative_lum |
float
|
The relative luminance of the value. |
Source code in webcode_tk/color_tools.py
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 |
|
get_rgb(code)
returns tuple of r,g,b values from any color value
Source code in webcode_tk/color_tools.py
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 |
|
has_alpha_channel(code)
returns a true if rgba, hsla, or 8 digit hex code
This function can receive a color value as hexidecimal, hsl, hsla, rgb, or rgba and determine whether there is an alpha channel or not.
NOTE: hsl() might have an alpha channel. If there is a slash, then there is an alpha channel.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
code
|
str
|
any form of hex, rgb or hsl with alpha channel or not. |
required |
Returns:
Name | Type | Description |
---|---|---|
has_alpha |
bool
|
whether there is an alpha channel present or not. |
Source code in webcode_tk/color_tools.py
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 |
|
hex_to_decimal(c)
converts 2-digit hex code channel to a base 10 integer
Parameters:
Name | Type | Description | Default |
---|---|---|---|
c
|
str
|
represents a single, 2-digit hexadecimal color channel |
required |
Raises:
Type | Description |
---|---|
ValueError
|
In case the channel is either not 2 digits or if one or more of the digits is not a hexadecimal digit. |
Returns:
Name | Type | Description |
---|---|---|
total |
int
|
the base-10 value of the hex number (as an integer) |
Source code in webcode_tk/color_tools.py
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 |
|
hex_to_rgb(hex_code)
converts a hexidecimal code into an rgb value.
This function takes a hex format (e.g. #336699
) and returns an
RGB as a tuple of color channels (red, green, and blue). Each
channel will be an integer between 0 and 255.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hex_code
|
str
|
a hexadecimal color code. |
required |
Returns:
Name | Type | Description |
---|---|---|
rgb |
tuple
|
a tuple of 3 integers each a value between 0 and 255 that represent the color channels: red, green, and blue (respectively). |
Source code in webcode_tk/color_tools.py
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 |
|
hsl_to_rgb(hsl)
converts hsl to rgb format (as tuples of integers)
This comes from [From HSL to RGB color conversion] (https://www.rapidtables.com/convert/color/hsl-to-rgb.html)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hsl
|
tuple
|
a tuple of integers that represent hue, saturation, and lightness |
required |
Returns:
Name | Type | Description |
---|---|---|
rgb |
tuple
|
a tuple of integers that represent the red, green, and blue channels. |
Source code in webcode_tk/color_tools.py
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 |
|
is_color_value(val)
Checks a string value to see if it's a valid CSS color code value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
val
|
str
|
The value in question. |
required |
Returns:
Name | Type | Description |
---|---|---|
is_valid |
bool
|
whether the color code is a valid hex, hsl, or rgb color value. |
Source code in webcode_tk/color_tools.py
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 |
|
is_gradient(val)
returns whether the value is a gradient or not
Parameters:
Name | Type | Description | Default |
---|---|---|---|
val
|
str
|
the CSS value in question |
required |
Source code in webcode_tk/color_tools.py
667 668 669 670 671 672 673 674 |
|
is_hex(val)
Checks a CSS hex value string to make sure it is valid.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
val
|
str
|
the CSS hex value. |
required |
Returns:
Name | Type | Description |
---|---|---|
is_valid |
bool
|
whether the hex value is valid or not. |
Source code in webcode_tk/color_tools.py
452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 |
|
is_hsl(val)
Checks a CSS hsl value string to make sure it is valid.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
val
|
str
|
a string in question (could be valid HSL or not) |
required |
Returns:
Name | Type | Description |
---|---|---|
is_valid |
bool
|
whether the code is a valid HSL code. |
Source code in webcode_tk/color_tools.py
490 491 492 493 494 495 496 497 498 499 500 501 502 |
|
is_keyword(val)
checks to see if a value is a color keyword or not
Parameters:
Name | Type | Description | Default |
---|---|---|---|
val
|
str
|
the CSS value in question. |
required |
Returns:
Name | Type | Description |
---|---|---|
is_keyword |
bool
|
if the value is a color keyword or not. |
Source code in webcode_tk/color_tools.py
529 530 531 532 533 534 535 536 537 538 539 |
|
is_rgb(val)
Checks a CSS rgb value string to make sure it is valid.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
val
|
str
|
a string in question (could be valid RGB or not) |
required |
Returns:
Name | Type | Description |
---|---|---|
is_valid |
bool
|
whether the code is a valid RGB code. |
Source code in webcode_tk/color_tools.py
474 475 476 477 478 479 480 481 482 483 484 485 486 487 |
|
luminance(rgb)
Calculates the luminance of a given color in RGB format.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rgb
|
tuple
|
a tuple of red, green, and blue values. |
required |
Returns:
Name | Type | Description |
---|---|---|
luminance |
float
|
the luminance value of the full CSS color. |
Source code in webcode_tk/color_tools.py
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 |
|
passes_color_contrast(level, hex1, hex2)
Compares the two hex codes (1 & 2) to see if it passes color contrast ratio.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
level
|
str
|
String of size and rating (ex. |
required |
hex1
|
str
|
a hexadecimal color code in string format, which could be the text or background color. |
required |
hex2
|
str
|
a hexadecimal color code in string format, which could be the text or background color. |
required |
Returns:
Name | Type | Description |
---|---|---|
passes |
bool
|
whether the two color codes pass the contrast at the level specified. |
Source code in webcode_tk/color_tools.py
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
|
rgb_as_string(rgb)
receive rgb as tuple -> returns formatted string
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rgb
|
tuple
|
description |
required |
Returns:
Name | Type | Description |
---|---|---|
rgb_string |
str
|
the rgb channels in the form of CSS rgb() value. For
example: |
Source code in webcode_tk/color_tools.py
378 379 380 381 382 383 384 385 386 387 388 389 390 |
|
rgb_to_hex(*args)
converts an RGB color to hexadecimal format
This function can receive either an RGB string or a tuple of integers and will convert it to a hexadecimal.
Returns:
Name | Type | Description |
---|---|---|
hex_code |
str
|
a hexidecimal color (eg. #336699) |
Source code in webcode_tk/color_tools.py
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
|
to_hex(color_code)
converts any color code to hex
Checks to see if it is a hex and returns if so. Then sees which type of color code it is and converts to hex and returns the value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
color_code
|
str
|
a string version of a color code. |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
a hexadecimal color code based on the original color |
Source code in webcode_tk/color_tools.py
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 |
|