sigye_background/lib.rs
1//! Background animation rendering for the sigye clock.
2//!
3//! This crate provides animated background effects for the terminal clock,
4//! including both stateless animations (computed from position/time) and
5//! stateful animations (matrix rain, snowfall) as well as reactive
6//! backgrounds that respond to system metrics.
7
8mod animations;
9mod chars;
10mod color;
11mod state;
12
13pub use color::{hsl_to_rgb, resource_to_color};
14pub use state::BackgroundState;