| idea_palettes_2024 | R Documentation |
A collection of color palettes based on the [IDEA Brand Guidelines (2024)](https://brandfolder.com/ideapublicschools) (you'll need to behind the firewall to see that guide).
idea_palettes_2024
An object of class list of length 7.
The list of available palettes is: * qual * div * blueorange * greenorange * bluegray * greengray * orangegray
# Make an x-y plot using the div palette
library(tidyverse)
df <- data.frame(x = rnorm(100, 0, 20),
y = rnorm(100, 0, 20),
cl = sample(letters[1:8], 100, replace=TRUE))
ggplot(df, aes(x, y, colour=cl, shape=cl)) +
geom_point(size=4) +
scale_colour_idea() +
theme_bw() +
theme(aspect.ratio=1)
# Make a histogram using the qual palette
ggplot(df, aes(x, fill=cl)) + geom_histogram() +
scale_fill_idea(palette="qual")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.