1 stable release

1.0.1 Mar 17, 2020

#4 in #colors

Download history 3306/week @ 2023-12-13 2271/week @ 2023-12-20 2313/week @ 2023-12-27 3690/week @ 2024-01-03 4392/week @ 2024-01-10 3909/week @ 2024-01-17 4538/week @ 2024-01-24 4291/week @ 2024-01-31 4455/week @ 2024-02-07 5207/week @ 2024-02-14 4940/week @ 2024-02-21 4122/week @ 2024-02-28 3900/week @ 2024-03-06 4430/week @ 2024-03-13 4484/week @ 2024-03-20 3404/week @ 2024-03-27

16,990 downloads per month
Used in 37 crates (3 directly)

MIT license

39KB
542 lines

Crates.io Build Status Codecov branch

Easy-to-use Rust parser for CSS3 color strings.
Lightweight.
Reliable (Provides tests, handles all errors to avoid panic!s).

Not 100% spec compliant in the name of convenience (see examples below):

  • allows for extra whitespaces
  • allows for floats where standard allows percentages only

W3C CSS3 Color spec

Mozilla CSS3 Color spec

Repository:
https://github.com/7thSigil/css-color-parser-rs.git

Original js parser:
https://github.com/deanm/css-color-parser-js

Link to the Documentation

Cargo.toml:

[dependencies]
css-color-parser = "*"

Example


extern crate css_color_parser;

//...

use css_color_parser::Color as CssColor;

let transparent_black = CssColor { r: 0, g: 0, b: 0, a: 1.0 };

println!("{:?}", " rgba (255, 128, 12, 0.5)".parse::<CssColor>().unwrap_or(transparent_black));
//Color { r: 255, g: 128, b: 12, a: 0.5 }

println!("{:?}", "#fff".parse::<CssColor>().unwrap_or(transparent_black));
//Color { r: 255, g: 255, b: 255, a: 1 }

println!("{:?}", "#ff0011".parse::<CssColor>().unwrap_or(transparent_black));
//Color { r: 255, g: 0, b: 17, a: 1 }

println!("{:?}", "slateblue".parse::<CssColor>().unwrap_or(transparent_black));
//Color { r: 106, g: 90, b: 205, a: 1 }

println!("{:?}", "blah".parse::<CssColor>().unwrap_or(transparent_black));
//Color { r: 0, g: 0, b: 0, a: 0 } - ColorParseError

println!("{:?}", "ffffff".parse::<CssColor>().unwrap_or(transparent_black));
//Color { r: 0, g: 0, b: 0, a: 0 } - ColorParseError

println!("{:?}", "hsla(900, 15%, 90%, 0.5)".parse::<CssColor>().unwrap_or(transparent_black));
//Color { r: 226, g: 233, b: 233, a: 0.5 }

println!("{:?}", "hsla(900, 15%, 90%)".parse::<CssColor>().unwrap_or(transparent_black));
//Color { r: 0, g: 0, b: 0, a: 0 } - ColorParseError

println!("{:?}", "hsl(900, 15%, 90%)".parse::<CssColor>().unwrap_or(transparent_black));
//Color { r: 226, g: 233, b: 233, a: 1 }

// NOTE: not spec compliant.
println!("{:?}", "hsl(900, 0.15, 90%)".parse::<CssColor>().unwrap_or(transparent_black));
//Color { r: 226, g: 233, b: 233, a: 1 }



(c) Katkov Oleksandr alexx.katkoff@gmail.com, 2016.

(c) Dean McNamee dean@gmail.com, 2012.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Dependencies

~17KB