#' @export
col_alpha <- function(col, alpha = 1) {
alpha <- round(pmax(0, pmin(1, as.numeric(alpha))) * 255)
alpha <- toupper(as.hexmode(alpha))
paste0(sapply(col, function(x) colorRampPalette(x)(1)), alpha)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.