| rgba_to_hex {monochromeR} | R Documentation | 
rgba_to_hex
Description
rgba_to_hex
Usage
rgba_to_hex(colour_rgba, background_colour = "#ffffff", ...)
Arguments
| colour_rgba | A vector of length 4: c(red value, green value, blue value, alpha). All colour values must be between 0 and 255. Alpha must be between 0 and 1. | 
| background_colour | Defaults to white. Users can specify a different colour to get
the hex code for their original colour blended with a specified background colour.
 | 
| ... | Allows for US spelling of color/colour. | 
Value
Returns the corresponding hex colour code
Examples
rgba_to_hex(c(52, 46, 39, 0.8))
rgba_to_hex(c(52, 46, 39, 0.8), "blue")
rgba_to_hex(c(52, 46, 39, 0.8), "#032cfc")
[Package monochromeR version 0.2.0 Index]