#' Tate palette list object
#'
#' Tests for \code{tate_palette_list} object.
#'
#' @param x \code{list}. A list containing palette data.
#'
#' @return A `logical` output of the test.
#' @noRd
is_tate_palette_list <- function(x){
if (class(x) == "tate_palette_list") {
state <- TRUE
} else { state <- FALSE}
return(state)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.