ggthemes (version 3.4.0)

canva_palettes: 150 Color Palettes from Canva

Description

150 four-color palettes by the canva.com design school. These palettes were derived from photos and "impactful websites". They were then adapted to Tableau and Excel palettes by the sources below.

Usage

canva_palettes

Arguments

Format

A named list of character vector. The names are the palette names. The values of the character vectors are hex colors, e.g. "#f98866".

References

Examples

Run this code
# NOT RUN {
require("tidyverse")
canva_df <- map_df(canva_palette, names(canva_palette),
                   ~ tible(color = .x, .id = seq_along(color), palette = .y))
ggplot(canva_df, aes(y = palette, x = .id, fill = color)) +
       geom_raster() +
       scale_fill_identity(guide = FALSE) +
       theme_minimal() +
       theme(panel.grid= element_blank(),
             axis.text.x = element_blank()) +
       labs(x = "", y = "")
# }

Run the code above in your browser using DataCamp Workspace