clr5 is a combination of five colors I like.

clr5

Format

An object of class character of length 5.

Details

This is just a shortcut for RColorBrewer::brewer.pal(5,'Set1').

Examples

ggplot(tibble( x = 1:5))+ coord_equal()+ geom_tile(aes(x = x, y = 1, fill = factor(x)))+ scale_fill_manual(values = clr5)+ theme_void()+ theme(legend.position = 'none')