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 9 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

"#fcfaf7" – background off-white

cream

"#fcfaf7" – same as offwhite

black

"#1a1614" – 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)
} # }