//! Support module containing fundamental types and utilities.
//!
//! This module provides the core types used throughout the library:
//!
//! - [`point`]: Points, extents, and axis types
//! - [`rect`]: Rectangle representation and operations
//! - [`color`]: Color representation with common color constants
//! - [`circle`]: Circle representation
//! - [`canvas`]: 2D drawing context abstraction
//! - [`font`]: Font handling and text metrics
//! - [`theme`]: Theming and styling constants
pub use ;
pub use Rect;
pub use Color;
pub use Circle;
pub use Canvas;
pub use Font;
pub use Theme;