Skip to contents

A named list of accent colors used by the solaris theme for UI and non-data visual elements. Useful for manual styling of annotations, custom geoms, or base R graphics.

Usage

solaris_colors

Format

A named list with 8 color values:

purple

"#2A0132" – deep purple (low end of palette)

indigo

"#215AA9" – indigo-blue

teal

"#009392" – teal

green

"#72BC5A" – green

gold

"#FFD700" – bright gold (high end of palette)

offwhite

"#faf9f7" – background off-white

black

"#000000" – text black

grid

"#e5ddd0" – grid line tan

Examples

# Access individual colors
solaris_colors$purple
#> [1] "#2A0132"
solaris_colors$gold
#> [1] "#FFD700"

# Use in a base R plot
if (FALSE) { # \dontrun{
plot(1:5, col = solaris_colors$teal, pch = 19, cex = 2)
} # }