//! Adaptive themes with automatic light/dark mode support.
//!
//! Themes are named collections of styles that adapt to the OS color scheme.
//! Adaptation happens at the style level, not the theme level: a style has
//! base attributes plus optional light/dark overrides, so shared attributes
//! are declared once and only the differences need overriding per mode.
//!
//! Resolving a style merges the active mode's overrides onto the base:
//! present values in the override replace the base, missing values fall
//! through to it. Color-scheme mode is a fact on [`crate::TargetProperties`];
//! convenience wrappers and `App::run` detect it, tests construct
//! `TargetProperties` with an explicit [`ColorMode`].
//!
//! See [`crate::stylesheet`] for the YAML format and [`crate::style`] for the
//! underlying style primitives.
pub use probe_color_mode;
pub use ColorMode;
pub use ;
pub use probe_icon_mode;
pub use IconMode;
pub use Theme;