kimono

docs.rs docs

A simple terminal css engine inspired by lipgloss

rust cargo add kimono

Example

```rust use ansi_escapes::; use kimono::;

const STYLE: Style = Style::new() .toppadding(1) .leftpadding(1) .rightpadding(2) .bottompadding(3) .color(0xebdeb8) .background(0x407955);

fn main() { print!("{}{}", ClearScreen, CursorMove::XY(10, 3)); STYLE.render("着物"); print!("{}", CursorMove::XY(-10, 3)); } ``` Screen Shot 2022-07-23 at 2 23 28 PM

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in kimono by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.