use ansi_escapes::*;
use kimono::*;
const STYLE: Style = Style::new()
.padding_top(1)
.padding_left(1)
.padding_right(2)
.padding_bottom(3)
.color(0xebdeb8)
.background(0x407955);
fn main() {
print!("{}{}", ClearScreen, CursorMove::XY(10, 3));
STYLE.render("着物");
print!("{}", CursorMove::XY(-10, 3));
}