Skip to contents

Color palette used on the official Brooklyn Botanic Gardens website tracker.

Usage

bbgcolors(name)

Arguments

name

string for what color information to gather

Details

Values can be any of the following:

all

"all"

Pre-bloom

"bloom0", "pre", "prebloom"

First bloom

"bloom1", "first", "first_bloom"

Peak bloom

"bloom2", "peak", "peak_bloom"

Post-peak bloom

"bloom3", "post", "postpeak_bloom"

Examples

bbgcolors("all")


require(ggplot2)
#> Loading required package: ggplot2
ggplot(iris, aes(Sepal.Length, Sepal.Width)) +
    geom_point(color = bbgcolors("first"))