// This file is part of helpers4.
// Copyright (C) 2025 baxyz
// SPDX-License-Identifier: LGPL-3.0-or-later
//! Colors without a dependency: parsing, hex, HSL, blending and WCAG contrast.
//!
//! [`Rgb`] is an 8-bit sRGB color that parses from `#rgb`, `#rrggbb`, `rgb(r, g, b)` or a basic CSS name;
//! [`Hsl`] converts to and from it; `mix` blends two colors; `contrast_ratio` and `best_text_color` answer
//! "is this text readable on that background".
pub use best_text_color;
pub use contrast_ratio;
pub use ParseColorError;
pub use Hsl;
pub use mix;
pub use Rgb;