colorMix | R Documentation |
Create an alternating sequence of graded colors
colorMix(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. |
E.D. Gennatas
color <- list(blue = c("#82afd3", "#000f3a"),
gray = c("gray10", "gray85"))
previewcolor(desaturate(colorMix(color, 6), .3))
color <- list(blue = c("#82afd3", "#57000a"),
gray = c("gray10", "gray85"))
previewcolor(desaturate(colorMix(color, 6), .3))
color <- list(blue = c("#82afd3", "#000f3a"),
purple = c("#23001f", "#c480c1"))
previewcolor(desaturate(colorMix(color, 5), .3))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.