This function paints random ribbons and (optionally) a triangle in the middle.

canvas_ribbons(
  colors,
  background = "#fdf5e6",
  triangle = TRUE
)

Arguments

colors

a string or character vector specifying the color(s) used for the artwork. The number of colors determines the number of ribbons.

background

a character specifying the color of the background.

triangle

logical. Whether to draw the triangle that breaks the ribbon polygons.

Value

A ggplot object containing the artwork.

See also

colorPalette

Author

Koen Derks, koen-derks@hotmail.com

Examples

# \donttest{
set.seed(1)

# Simple example
canvas_ribbons(colors = colorPalette("retro1"))

# }