Skip to contents

Official color palette for the tidyMacro package, designed for VAR model visualizations including impulse response functions, forecast error variance decompositions, and other time series plots.

Usage

tidyMacro_colors

Format

A character vector of 14 hex color codes

Details

The palette consists of 14 distinct colors optimized for clarity and professional presentation: - Crimson (#910048) - Cyan (#00B0B9) - Blue (#407EC9) - Orange (#FF8200) - Gray (#707372) - Navy (#001E60) - Lime (#78BE20) - Purple (#8031A7) - Olive (#658D1B) - Gold (#F2A900) - Dark Orange (#E35205) - Red (#DA291C) - Black (#231F20) - Light Blue (#009CDE)

Examples

if (FALSE) { # \dontrun{
# Display the color palette
scales::show_col(tidyMacro_colors)

# Use with ggplot2
library(ggplot2)
ggplot(mtcars, aes(x = wt, y = mpg, color = factor(cyl))) +
  geom_point() +
  scale_color_manual(values = tidyMacro_colors) +
  ftheme_tidyMacro()
} # }