ohsu_cols: OHSU colors

View source: R/ohsu_palettes.R

ohsu_colsR Documentation

OHSU colors

Description

Function to extract ohsu colors as hex codes

horizon yellow #FFC939
marquam blue #5E97C9
ohsu gray #585E60
terwilliger green #57B147
dark blue #002776
orange #ED6D23
pink red #ED1941
cyan blue #0E4D8F
red #C34D36

Usage

ohsu_cols(...)

Arguments

...

Character names of ohsu_colors

Examples

library(ggplot2)
ohsu_cols()
ohsu_cols("horizon yellow")
ohsu_cols("horizon yellow", "terwilliger green")
ohsu_cols("terwilliger green", "horizon yellow")

ggplot(data = mtcars,
       aes(x = hp,
           y = mpg)) +
  geom_point(color = ohsu_cols("terwilliger green"),
             size = 4,
             alpha = 0.8) +
  theme_minimal()

emilelatour/laviz documentation built on Oct. 15, 2023, 1:41 p.m.