//! Shared palettes for marks that auto-cycle colors when the user doesn't
//! provide an explicit `Vec<Color>`.
//!
//! Currently exposes one palette: [`POLAR_DEFAULT`], used by [`crate::marks::ArcMark`]
//! and [`crate::marks::PolarBarMark`] for default wedge / bar colors. The
//! palette is **Tableau 10 (vibrant)** — the modern matplotlib categorical
//! default — chosen for higher saturation and pairwise contrast than the
//! older seaborn-deep set, addressing the "Nightingale + Sunburst examples
//! look muddy" feedback in `starsight-dbh`.
use Color;
/// Default 10-color cycle used by polar-data-mapped wedge marks (`ArcMark`,
/// `PolarBarMark`) when the caller does not set `.colors(...)`. Sequence
/// matches matplotlib's `tab10` (Tableau 10 vibrant).
pub const POLAR_DEFAULT: = ;