# [WORK IN PROGRES] Idk how to name it yet
Its a rust library for creating images from css
[](https://github.com/unixpariah/css-image/actions/workflows/test.yml) [](https://codecov.io/gh/unixpariah/css-image)
## Dependencies
- cairo
## Usage
```rust
use css::parse;
fn main() {
let css = r#"
body {
background-color: red;
}
"#;
let parsed = parse(css).unwrap();
println!("{:?}", parsed); // Output: HashMap<String, Vec<u8>>
}
```