Skip to contents

Path to wesanderson JSON and XML

Usage

wesanderson_json()

wesanderson_xml()

Value

Local path to JSON or XML file containing Wes Anderson color palettes

See also

Other wesanderson data and functions: wesanderson

Examples

wesanderson_json()
#> [1] "/home/runner/work/_temp/Library/repurrrsive/extdata/wesanderson.json"
if (require("jsonlite")) {
  jsonlite::fromJSON(wesanderson_json())
}
#> $wesanderson
#> $wesanderson$GrandBudapest
#> [1] "#F1BB7B" "#FD6467" "#5B1A18" "#D67236"
#> 
#> $wesanderson$Moonrise1
#> [1] "#F3DF6C" "#CEAB07" "#D5D5D3" "#24281A"
#> 
#> $wesanderson$Royal1
#> [1] "#899DA4" "#C93312" "#FAEFD1" "#DC863B"
#> 
#> $wesanderson$Moonrise2
#> [1] "#798E87" "#C27D38" "#CCC591" "#29211F"
#> 
#> $wesanderson$Cavalcanti
#> [1] "#D8B70A" "#02401B" "#A2A475" "#81A88D" "#972D15"
#> 
#> $wesanderson$Royal2
#> [1] "#9A8822" "#F5CDB4" "#F8AFA8" "#FDDDA0" "#74A089"
#> 
#> $wesanderson$GrandBudapest2
#> [1] "#E6A0C4" "#C6CDF7" "#D8A499" "#7294D4"
#> 
#> $wesanderson$Moonrise3
#> [1] "#85D4E3" "#F4B5BD" "#9C964A" "#CDC08C" "#FAD77B"
#> 
#> $wesanderson$Chevalier
#> [1] "#446455" "#FDD262" "#D3DDDC" "#C7B19C"
#> 
#> $wesanderson$Zissou
#> [1] "#3B9AB2" "#78B7C5" "#EBCC2A" "#E1AF00" "#F21A00"
#> 
#> $wesanderson$FantasticFox
#> [1] "#DD8D29" "#E2D200" "#46ACC8" "#E58601" "#B40F20"
#> 
#> $wesanderson$Darjeeling
#> [1] "#FF0000" "#00A08A" "#F2AD00" "#F98400" "#5BBCD6"
#> 
#> $wesanderson$Rushmore
#> [1] "#E1BD6D" "#EABE94" "#0B775E" "#35274A" "#F2300F"
#> 
#> $wesanderson$BottleRocket
#> [1] "#A42820" "#5F5647" "#9B110E" "#3F5151" "#4E2A1E" "#550307" "#0C1707"
#> 
#> $wesanderson$Darjeeling2
#> [1] "#ECCBAE" "#046C9A" "#D69C4E" "#ABDDDE" "#000000"
#> 
#> 
wesanderson_xml()
#> [1] "/home/runner/work/_temp/Library/repurrrsive/extdata/wesanderson.xml"
if (require("xml2")) {
  xml2::read_xml(wesanderson_xml())
}
#> {xml_document}
#> <package name="wesanderson">
#>  [1] <palette name="GrandBudapest">\n  <hex>#F1BB7B</hex>\n  <hex>#FD6467</he ...
#>  [2] <palette name="Moonrise1">\n  <hex>#F3DF6C</hex>\n  <hex>#CEAB07</hex>\n ...
#>  [3] <palette name="Royal1">\n  <hex>#899DA4</hex>\n  <hex>#C93312</hex>\n  < ...
#>  [4] <palette name="Moonrise2">\n  <hex>#798E87</hex>\n  <hex>#C27D38</hex>\n ...
#>  [5] <palette name="Cavalcanti">\n  <hex>#D8B70A</hex>\n  <hex>#02401B</hex>\ ...
#>  [6] <palette name="Royal2">\n  <hex>#9A8822</hex>\n  <hex>#F5CDB4</hex>\n  < ...
#>  [7] <palette name="GrandBudapest2">\n  <hex>#E6A0C4</hex>\n  <hex>#C6CDF7</h ...
#>  [8] <palette name="Moonrise3">\n  <hex>#85D4E3</hex>\n  <hex>#F4B5BD</hex>\n ...
#>  [9] <palette name="Chevalier">\n  <hex>#446455</hex>\n  <hex>#FDD262</hex>\n ...
#> [10] <palette name="Zissou">\n  <hex>#3B9AB2</hex>\n  <hex>#78B7C5</hex>\n  < ...
#> [11] <palette name="FantasticFox">\n  <hex>#DD8D29</hex>\n  <hex>#E2D200</hex ...
#> [12] <palette name="Darjeeling">\n  <hex>#FF0000</hex>\n  <hex>#00A08A</hex>\ ...
#> [13] <palette name="Rushmore">\n  <hex>#E1BD6D</hex>\n  <hex>#EABE94</hex>\n  ...
#> [14] <palette name="BottleRocket">\n  <hex>#A42820</hex>\n  <hex>#5F5647</hex ...
#> [15] <palette name="Darjeeling2">\n  <hex>#ECCBAE</hex>\n  <hex>#046C9A</hex> ...