Skip to contents

berkeley_2 provides the twelve secondary colors of Berkeley, University of California, USA.

Usage

berkeley_2

Format

An object of class character of length 12.

Source

Color definitions are based on Berkeley's Color manual.

Value

A named vector of colors (HEX/HTML codes of type character).

Details

The 12 secondary colors are divided into 4 sub-groups: 3 Neutrals: "Wellman tile" (defined as HEX #D9661F, CMYK 0/69/98/12, Pantone 7416), "Bay fog" (defined as HEX #DDD5C7, CMYK 5/11/8/12, Pantone 434), and "Sather gate" (defined as HEX #B9D3B6, CMYK 25/2/30/4, Pantone 558); 3 Vibrants: "Rose garden" (defined as HEX #EE1F60, CMYK 0/98/46/0, Pantone 1925), "Lawrence" (defined as HEX #00B0DA, CMYK 79/0/6/5, Pantone 306), and "Ion" (defined as HEX #CFDD45, CMYK 23/0/89/0, Pantone 381); 3 Brights: "Golden gate" (defined as HEX #ED4E33, CMYK 1/85/88/0, Pantone 7417), "Lap lane" (defined as HEX #00A598, CMYK 81/0/39/0, Pantone 326), and "Soybean" (defined as HEX #859438, CMYK 17/0/88/39, Pantone 7746); and 3 Darks: "South hall" (defined as HEX #6C3302, CMYK 11/68/95/62, Pantone 7602), "Pacific" (defined as HEX #46535E, CMYK 45/25/16/59, Pantone 431), and "Stone pine" (defined as HEX #584F29, CMYK 40/40/80/55, Pantone 450).

Berkeley's secondary palette is broken into four groups: Neutrals, Vibrants, Brights, and Darks.

In a grid of the Color manual, each group is represented by a column, with colors getting progressively darker in value by group (from left to right).

See the Color manual for accessible and suitable combinations.

Author

unicol, 2023-06-14.

Examples

berkeley_2
#> Wellman tile      Bay fog  Sather gate  Rose garden     Lawrence          Ion 
#>    "#D9661F"    "#DDD5C7"    "#B9D3B6"    "#EE1F60"    "#00B0DA"    "#CFDD45" 
#>  Golden gate     Lap lane      Soybean   South hall      Pacific   Stone pine 
#>    "#ED4E33"    "#00A598"    "#859438"    "#6C3302"    "#46535E"    "#584F29" 
unikn::seecol(berkeley_2, main = "Secondary colors of Berkeley, CA") # view color palette


# Sub-groups: 
berkeley_2[1:3]    # Neutrals
#> Wellman tile      Bay fog  Sather gate 
#>    "#D9661F"    "#DDD5C7"    "#B9D3B6" 
berkeley_2[4:6]    # Vibrants
#> Rose garden    Lawrence         Ion 
#>   "#EE1F60"   "#00B0DA"   "#CFDD45" 
berkeley_2[7:9]    # Brights
#> Golden gate    Lap lane     Soybean 
#>   "#ED4E33"   "#00A598"   "#859438" 
berkeley_2[10:12]  # Darks
#> South hall    Pacific Stone pine 
#>  "#6C3302"  "#46535E"  "#584F29"