rgba!() { /* proc-macro */ }Expand description
Compile time [RGBA] struct builder.
Examples
rgba!("#3467"); // RGBA::new(51, 76, 102, 127)
rgba!("#334C667F"); // RGBA::new(51, 76, 102, 127)
rgba!("rgb(51, 76, 102, .5)"); // RGBA::new(51, 76, 102, 127)
rgba!("rgb(20% 30% 40% 50%)"); // RGBA::new(51, 76, 102, 127)
rgba!(51, 76, 102, 127); // RGBA::new(51, 76, 102, 127)
rgba!(0.2, 0.3, 0.4, 0.5); // RGBA::new(51, 76, 102, 127)