Moves ~265 lines of TOML theme constant data to a dedicated file, reducing theme.rs from 553 to ~290 lines of logic. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
162 B
Rust
12 lines
162 B
Rust
//! Terminal UI module
|
|
|
|
pub mod footer;
|
|
pub mod header;
|
|
pub mod layout;
|
|
pub mod pages;
|
|
pub mod theme;
|
|
mod theme_builtins;
|
|
pub mod widgets;
|
|
|
|
pub use layout::draw;
|