An open API service indexing awesome lists of open source software.

https://github.com/narven/colorrs

Color library for Rust
https://github.com/narven/colorrs

colors rust rust-lang

Last synced: 4 months ago
JSON representation

Color library for Rust

Awesome Lists containing this project

README

        

# colorrs

Color.rs is a color library for Rust

```rust
fn main() {
let _ = Rgba::new(10, 10, 10, None);
let _ = Rgba::new(10, 10, 10, 0.2);
}
```