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
- Host: GitHub
- URL: https://github.com/narven/colorrs
- Owner: Narven
- Created: 2024-03-22T23:15:50.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-22T23:23:28.000Z (over 1 year ago)
- Last Synced: 2025-01-20T00:55:53.928Z (6 months ago)
- Topics: colors, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Codeowners: CODEOWNERS.md
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);
}
```