Skip to content

Color palettes based on eyeshadow palettes from ColourPop!

Notifications You must be signed in to change notification settings

Michaeladebolt/colouRpop

Repository files navigation

Welcome to colouRpop!

colouRpop (100 × 100 px) (250 × 250 px)

I made some color palettes based on ColourPop's eyeshadow palettes! Are they the most practical color palettes to make figures with?

Of course not! But are they fun? I think so!

Hope you enjoy :)

Installation

To install the package, run:


devtools::install_github("michaeladebolt/colouRpop" )
library(colouRpop)

Preview palettes

After you've installed the package, to preview what a palette looks like you can run:


colouRpop(palette = "malibu_barbie", show_me = TRUE)

image

colouRpop(palette = "its_a_mood", show_me = TRUE)

image

colouRpop(palette = "the_child", show_me = TRUE)

image

colouRpop(palette = "limoncello", show_me = TRUE)

image

Use the palettes

To use a palette in a figure, delete the show_me argument, or change it to FALSE (the default is FALSE). You can use the colouRpop function directly in a plot, or save the output to an object to use in a plot. For example:


fake_data <- data.frame(x = as.factor(rnorm(n = 9, mean = 5, sd = 1) ),
                        y = as.factor(rnorm(n = 9, mean = 5, sd = 1)))

ggplot(data = fake_data, 
       aes(x = x, y = y)) +
  geom_point(color = colouRpop(palette = "big_poppy"), 
             size = 12.5) +
  theme_void() 

image

You can also save the output of the function to an object, and then use that object in your plot. For example:


colors <- colouRpop(palette = "its_a_mood", show_me = FALSE)

fake_data <- data.frame(x = as.factor(rnorm(n = 28, mean = 5, sd = 1) ),
                        y = as.factor(rnorm(n = 28, mean = 5, sd = 1)))

ggplot(data = fake_data, 
       aes(x = x, y = y)) +
  geom_point(color = colors, 
             size = 12.5) +
  theme_void() 

image

View all the palettes

Below are pictures of the original palettes. These images were taken from ColourPop's website: https://colourpop.com/

1 2 3 4 5 6 7 8 9 10 11

About

Color palettes based on eyeshadow palettes from ColourPop!

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages