agent-air-tui 0.7.0

TUI frontend for agent-air - ratatui-based terminal interface
Documentation
//! Application-level TUI components
//!
//! This module contains higher-level TUI components that build on the base primitives
//! in the parent `tui` module. These are shared across LLM agent applications.
//!
//! Components:
//! - Theme system with runtime switching
//! - Theme picker widget
//! - 45+ pre-built themes

#[macro_use]
/// Theme definition macros.
pub mod macros;
/// Built-in theme definitions.
pub mod builtins;
/// Theme runtime management.
pub mod theme;
/// Theme picker widget.
pub mod theme_picker;

pub use builtins::{THEMES, ThemeInfo, default_theme_name, get_theme, list_themes};
pub use theme::{Theme, current_theme_name, init_theme, set_theme, theme};
pub use theme_picker::{ThemePickerState, render_theme_picker};