color_mix | R Documentation |
Create an alternating sequence of graded colors
color_mix(color, n = 4)
color |
List: List of two or more elements, each containing two colors. A gradient will be created from the first to the second color of each element |
n |
Integer: Number of steps in each gradient. |
Character vector of color hex codes.
EDG
## Not run:
color <- list(
blue = c("#82afd3", "#000f3a"),
gray = c("gray10", "gray85")
)
previewcolor(desaturate(color_mix(color, 6), .3))
color <- list(
blue = c("#82afd3", "#57000a"),
gray = c("gray10", "gray85")
)
previewcolor(desaturate(color_mix(color, 6), .3))
color <- list(
blue = c("#82afd3", "#000f3a"),
purple = c("#23001f", "#c480c1")
)
previewcolor(desaturate(color_mix(color, 5), .3))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.