lll_palette: Generates color palettes from "La La Land"

Description Usage Arguments Value Examples

View source: R/lalaland_palettes.R

Description

Hexadecimal codes for a selection of color palettes inspired by the 2016 film "La La Land".

Usage

1

Arguments

name

Name of the desired color palette. Choices: CityOfStars1, CityOfStars2, LightHouseCafe, Sebs, Summer, Epilogue1, California, LovelyNight, Epilogue2, Traffic.

n

Vector of colors desired. Colors can be selected, and combinations viewed, using show_lll_palette.

Value

A vector of colors, in the form of hexadecimal codes.

Examples

1
2
3
4
5
6
7
8
9
lll_palette("CityOfStars1")
lll_palette("Summer", c(1,3,5))

## In a ggplot2 context:
library(ggplot2)
ggplot(mtcars, aes(x = disp, y = qsec, color = as.factor(carb))) +
geom_point() +
scale_color_manual(values = lll_palette("Epilogue1")) +
theme_minimal()

simranvatsa/lalaland documentation built on May 22, 2019, 6:34 p.m.