Skip to contents

The color palettes used in our theme system

Usage

coursekata_palette(indices = integer(0))

Arguments

indices

The indices of the colors to pull (or all colors if no indices are given).

Value

A named list of the requested colors in the palette.

Examples

coursekata_palette()
#> $teal50
#> [1] "#009d9a"
#> 
#> $purple70
#> [1] "#6929c4"
#> 
#> $orange70
#> [1] "#8a3800"
#> 
#> $red50
#> [1] "#fa4d56"
#> 
#> $green60
#> [1] "#198038"
#> 
#> $cyan90
#> [1] "#012749"
#> 
#> $yellow50
#> [1] "#b28600"
#> 
#> $red90
#> [1] "#570408"
#> 
#> $cyan50
#> [1] "#1192e8"
#> 
#> $teal70
#> [1] "#005d5d"
#> 
#> $magenta70
#> [1] "#9f1853"
#> 
#> $blue80
#> [1] "#002d9c"
#> 
#> $purple50
#> [1] "#a56eff"
#> 
#> $magenta50
#> [1] "#ee538b"
#> 
#> $gray30
#> [1] "gray30"
#> 
coursekata_palette(c(1, 3, 5))
#> $teal50
#> [1] "#009d9a"
#> 
#> $orange70
#> [1] "#8a3800"
#> 
#> $green60
#> [1] "#198038"
#>