Color palettes generated from favorite monsters/stages from the monster hunter series. Palettes were designed to accomodate for different forms of color blindness (using https://www.color-blindness.com/coblis-color-blindness-simulator/).
Idea and base code from alphonse package: https://github.com/kaylinratner/alphonse/blob/main/man/alphonse
See papers below for examples using this R package:
https://bmcgenomics.biomedcentral.com/articles/10.1186/s12864-022-09018-1
# install.packages("devtools")
devtools::install_github("jwvillain/MHcolors")
# for README examples
library(ggplot2)
library(scales)Below is the list of palettes that are currently available.
library(MHcolors)
names(MHpalettes)
[1] "mhr_tetranadon" "mhr_magnamalo" "mhr_pukei" "mhr_mizutsune"
[5] "mhr_narwa" "mhr_ibushi" "mhr_tigrex" "mhr_apexZinogre"
[9] "mhr_goss" "mhs2_razewing" "mhs2_zamtrios" "mhs2_elderfrost"
[13] "mhs2_boltreaver" "mhs2_hellblade" "mhs2_lagiacrus" "mhSunbreak_garangolm"
[17] "mhSunbreak_orangaten" "mhSunbreak_lunagaron" "mhSunbreak_malzeno" "mhSunbreak_astalos"
[21] "mhSunbreak_gaismagorm" "mhSunbreak_metalRaths" "mhSunbreak_primordial" "mhr_kamura"
[25] "mhs2_palamute" "mhSunbreak_elgado" "mhSunbreak_amatsu"# show ordering of colors in Monster Hunter Rise - Tetranadon (mhr_tetranadon) palette
show_col(MHpalettes$mhr_tetranadon)# show ordering of colors in Monster Hunter Rise - Magnamalo (mhr_magnamalo) palette
show_col(MHpalettes$mhr_magnamalo)# show ordering of colors in Monster Hunter Rise - Pukei-Pukei (mhr_pukei) palette
show_col(MHpalettes$mhr_pukei)# show ordering of colors in Monster Hunter Rise - Mizutsune (mhr_mizutsune) palette
show_col(MHpalettes$mhr_mizutsune)# show ordering of colors in Monster Hunter Rise - Narwa (mhr_narwa) palette
show_col(MHpalettes$mhr_narwa)# show ordering of colors in Monster Hunter Rise - Ibushi (mhr_ibushi) palette
show_col(MHpalettes$mhr_ibushi)# show ordering of colors in Monster Hunter Rise - Tigrex (mhr_tigrex) palette
show_col(MHpalettes$mhr_tigrex)# show ordering of colors in Monster Hunter Rise - Apex Zinogre (mhr_apexZinogre) palette
show_col(MHpalettes$mhr_apexZinogre)# show ordering of colors in Monster Hunter Rise - Goss Harag (mhr_goss) palette
show_col(MHpalettes$mhr_goss)# show ordering of colors in Monster Hunter Stories 2 - Razewing Rathalos (mhs2_razewing) palette
show_col(MHpalettes$mhs2_razewing)# show ordering of colors in Monster Hunter Stories 2 - Zamtrios (mhs2_zamtrios) palette
show_col(MHpalettes$mhs2_zamtrios)# show ordering of colors in Monster Hunter Stories 2 - Elderfrost Gammoth (mhs2_elderfrost) palette
show_col(MHpalettes$mhs2_elderfrost)# show ordering of colors in Monster Hunter Stories 2 - Boltreaver Astalos (mhs2_boltreaver) palette
show_col(MHpalettes$mhs2_boltreaver)# show ordering of colors in Monster Hunter Stories 2 - Hellblade Glavenus (mhs2_hellblade) palette
show_col(MHpalettes$mhs2_hellblade)# show ordering of colors in Monster Hunter Stories 2 - Lagiacrus (mhs2_lagiacrus) palette
show_col(MHpalettes$mhs2_lagiacrus)# show ordering of colors in Monster Hunter Rise Sunbreak - Garangolm (mhSunbreak_garangolm) palette
show_col(MHpalettes$mhSunbreak_garangolm)# show ordering of colors in Blood Orange Bishaten (mhSunbreak_orangaten) palette
show_col(MHpalettes$mhSunbreak_orangaten)# show ordering of colors in Lunagaron (mhSunbreak_lunagaron) palette
show_col(MHpalettes$mhSunbreak_lunagaron)# show ordering of colors in Malzeno (mhSunbreak_malzeno) palette
show_col(MHpalettes$mhSunbreak_malzeno)# show ordering of colors in Astalos (mhSunbreak_astalos) palette
show_col(MHpalettes$mhSunbreak_astalos)# show ordering of colors in Gaismagorm (mhSunbreak_gaismagorm) palette
show_col(MHpalettes$mhSunbreak_gaismagorm)# show ordering of colors in Metal Raths (mhSunbreak_metalRaths) palette
show_col(MHpalettes$mhSunbreak_metalRaths)# show ordering of colors in Amatsu (mhSunbreak_amatsu) palette
show_col(MHpalettes$mhSunbreak_amatsu)# show ordering of colors in Amatsu (mhSunbreak_primordial) palette
show_col(MHpalettes$mhSunbreak_primordial)# show ordering of colors in Monster Hunter Rise - Kamura Village (mhr_kamura) palette
show_col(MHpalettes$mhr_kamura)# show ordering of colors in Monster Hunter Stories 2 - Palamute (mhs2_palamute) palette
show_col(MHpalettes$mhs2_palamute)# show ordering of colors in Elgado (mhSunbreak_elgado) palette
show_col(MHpalettes$mhSunbreak_elgado)





















































