Usage | Release | Development |
---|---|---|
R color palettes inspired by video games.
[!NOTE] These color palettes may not be color blind friendly. If accessibility is a priority, I recommend either using the virdis package or checking your plots before sharing using tools which simulate color blindness (such as coblis).
Table of Contents
gameR is on CRAN! Install the stable version of gameR with:
You can install the development version of gameR, which may contain additional palettes, from r-universe with
# Enable universe(s) by nathansam
options(repos = c(
nathansam = "https://nathansam.r-universe.dev",
CRAN = "https://cloud.r-project.org"
))
install.packages("gameR")
gameR provides either discrete color palettes or continuous palettes generated by interpolating a discrete palette. Discrete palettes and continuous palettes are provided via the gameR_cols()
and gameR_cont()
functions respectively. For a full list of the palettes provided by gameR
, call one of these functions without any arguments.
gameR_cols()
#> [1] "banjo" "blocks" "border" "cowboy" "cups" "cyberpunk"
#> [7] "fallout" "gris" "kirby" "ocarina" "okami" "p3r"
#> [13] "p4g" "pman" "rayman" "sonic" "spirit" "splat"
#> [19] "superbros" "wow"
The following palettes are ordered alphabetically by the name of the game which inspired the palette.
Contributions via pull requests are welcome! I would love to have as many video games represented as possible. With that said, there are two requirements I ask of any contributed palettes:
Adding a new palette is as simple adding a new element to the gameR_colors
list in R/palettes.R, and calling devtools::document()
from R to update the package documentation.
The README is generated by README.Rmd. Please update this file with the palettes you are contributing (the palettes are in alphabetical order), and knit the file before committing and pushing your contributions.
If you are contributing palette(s), I would love for your contribution to be recognized. Please feel free to add yourself as a contributor (role = “ctb”) in the DESCRIPTION file.