idea_palettes: IDEA Color Palettes (2019)

idea_palettesR Documentation

IDEA Color Palettes (2019)

Description

A collection of color palettes based on the [IDEA Brand Guidelines (2019)](https://brandfolder.com/ideapublicschools) (you'll need to behind the firewall to see that guide).

Usage

idea_palettes

idea_palettes_2019

Format

An object of class list of length 7.

An object of class list of length 7.

Details

The list of available palettes is: * qual * div * blueorange * greenorange * bluegray * greengray * orangegray

Examples


# 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")


idea-analytics/ideacolors documentation built on April 6, 2024, 4:34 a.m.