pal_unikn_web provides the default uni.kn color palette as a data frame containing 10 colors.

pal_unikn_web

Format

An object of class data.frame with 1 rows and 10 columns.

Details

This is the primary (web/sRGB) scale.

Note that pal_unikn provides a divergent color palette (of 11 colors).

See https://www.uni-konstanz.de/en/university/news-and-media/create-online-and-print-media/corporate-design/ for details.

See also

pal_unikn for the unikn default color palette with all 5 colors of pal_seeblau; pal_unikn_ppt for an alternative (ppt) version; pal_unikn_pref for a uni.kn color palette with all preferred colors; seecol for viewing and comparing color palettes; usecol for using color palettes.

Other color palettes: pal_bordeaux, pal_grau, pal_karpfenblau, pal_peach, pal_petrol, pal_pinky, pal_seeblau, pal_seegruen, pal_signal, pal_unikn, pal_unikn_dark, pal_unikn_light, pal_unikn_pair, pal_unikn_ppt, pal_unikn_pref

Examples

pal_unikn_web
#>   seeblau4 seeblau3 seeblau2 seeblau1   white seegrau1 seegrau2 seegrau3
#> 1  #00A9E0  #59C7EB  #A6E1F4  #CCEEF9 #FFFFFF  #E5E5E5  #CCCCCC  #999999
#>   seegrau4   black
#> 1  #666666 #000000
dim(pal_unikn_web)  # 1 10
#> [1]  1 10

# Access by position:
pal_unikn_web[2]    # 2nd named color "seeblau3" (as df)
#>   seeblau3
#> 1  #59C7EB
pal_unikn_web[[2]]  # 2nd color value "#59C7EB"
#> [1] "#59C7EB"

# Access by name: 
pal_unikn_web["seeblau3"]    # color "seeblau3" (as df)
#>   seeblau3
#> 1  #59C7EB
pal_unikn_web[["seeblau3"]]  # color value "#59C7EB"
#> [1] "#59C7EB"

# Plotting palette:
seecol(pal_unikn_web)