Skip to main content

cirious_codex_term/control/
mod.rs

1/// ANSI color definitions and representations.
2pub mod color;
3
4/// Utilities for moving and manipulating the terminal cursor.
5pub mod cursor;
6
7/// Utilities for clearing the terminal screen or lines.
8pub mod screen;
9
10/// ANSI text formatting styles (e.g., bold, italic).
11pub mod style;
12
13/// Deferred formatting structures for optimal string styling.
14pub mod styled;
15
16/// Extension traits for adding styling methods to types.
17pub mod traits;
18
19pub use color::Color;
20pub use cursor::Cursor;
21pub use screen::Screen;
22pub use style::Style;
23pub use styled::StyledText;
24pub use traits::StyleExt;