Skip to contents

Preset path through ct_theme() tuned for a minimal, generous-whitespace, navy-default look inspired by top-tier global strategy consultancies.

Usage

theme_strategy(main_color = NULL, ...)

Arguments

main_color

Routed into the theme geom ink slot so unmapped geoms pick it up via from_theme(). Defaults to strategy_navy[1]. Pass any value grDevices::col2rgb() accepts to override. Does not affect title colour (a fixed neutral near-black).

...

Forwarded to ct_theme() — e.g. density, context, base_size.

Value

A ggplot2::theme() object.

Examples

library(ggplot2)
p <- ggplot(mtcars, aes(wt, mpg)) +
  geom_point() +
  theme_strategy()