Ecosyste.ms: Awesome
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: 25 days ago
JSON representation
Color library for Rust
- Host: GitHub
- URL: https://github.com/narven/colorrs
- Owner: Narven
- Created: 2024-03-22T23:15:50.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-03-22T23:23:28.000Z (8 months ago)
- Last Synced: 2024-03-23T00:35:37.740Z (8 months ago)
- Topics: colors, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- 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);
}
```