fn main() { // this list would ideally be generated on the fly out of the written html, // but i don't want to unneeded dependencies to this crate let classes = [ "mt[10rem]", "color[#e20f00]", "color[green]hover", "content[attr(after)]$after", "content['*']$before", "color[red]$after", ]; let css = dbg!(zephyr::generate_css(&classes)); let html = format!( r#"
this text is red, but green on hover
this text has a lot of margin
"# ); std::fs::write("./examples/index.html", html).unwrap(); }