Nothing
#' @importFrom grDevices col2rgb rgb
#' @noRd
color2hex <- function(color){
if(is.null(color)) return(NULL)
RGB <- col2rgb(color)[,1]
rgb(RGB["red"], RGB["green"], RGB["blue"], maxColorValue = 255)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.