This function provides a list of all available DOYPAColors color palettes, categorized by type: sequential, diverging, and qualitative. It helps users to explore the various color palettes available for use in their visualizations.
Value
A named list containing the names of available color palettes for each type: "sequential", "diverging", and "qualitative".
Examples
# List available DOYPAColors color palettes by type
palette_names <- list_doypa_pals()
print(palette_names)
#> $sequential
#> [1] "blue" "deep" "blue_purple" "purple" "yellow_green"
#> [6] "doypa_qual" "regal_blue" "blue_red" "red" "orange"
#> [11] "pink" "gray"
#>
#> $diverging
#> [1] "blue2red" "purple2green" "mir"
#>
#> $qualitative
#> [1] "astro" "buzz" "cyberpunk" "earth"
#> [5] "goofy" "google" "doypa" "high_contrast"
#> [9] "nature" "retro" "rookie" "snack"
#> [13] "sunset" "tidy" "vaporwave"
#>