Upgrades to PyMuPDF 1.19.1, which simplifies our handling of colorspaces. We
no longer need to check for various colorspaces (simplifying our code), and we
are now able to compare rectangle color to text color more accurately, since
they are now normalized by PyMuPDF.
Previously we'd have a false positive if a rectangle and text were the same
color but in different colorspaces. For example, 0.0 in grayscale is the same
as (0.0, 0.0, 0.0) in RGB, but we couldn't compare those easily before.