Skip to contents

Applies a Circadia Lab qualitative palette to the fill aesthetic.

Usage

scale_fill_circadia(palette = "main", reverse = FALSE, ...)

Arguments

palette

Palette name. Default "main".

reverse

Logical. Reverse the palette? Default FALSE.

...

Additional arguments passed to ggplot2::discrete_scale().

Examples

library(ggplot2)
ggplot(mpg, aes(class, fill = drv)) +
  geom_bar() +
  scale_fill_circadia() +
  theme_circadia()