//! Property testing support via proptest.
//!
//! This module provides an [`Arbitrary`] implementation for [`Color`],
//! enabling property-based testing with the [`proptest`] crate.
use *;
use crateColor;
/// Implementation of [`Arbitrary`] for [`Color`] to support property-based testing.
///
/// Generates random colors with arbitrary RGB values and optional alpha channel.