tabulate_palette | R Documentation |
This function takes a list of color palettes and returns a data frame with detailed information about each color.
tabulate_palette(palette_list)
palette_list |
A list of color palettes. Each element of the list should be a character vector of color names or hex codes. |
A data frame with columns for RGB values, color names, hex codes, and palette identifiers.
palette_list <- list(
palette1 = c("red", "green", "blue"),
palette2 = c("#FF0000", "#00FF00", "#0000FF")
)
tabulate_palette(palette_list)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.