Skip to content

Instantly share code, notes, and snippets.

@andrewheiss
Created September 23, 2020 00:15
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewheiss/eb9c8e021f316bd1947767981b113821 to your computer and use it in GitHub Desktop.
Save andrewheiss/eb9c8e021f316bd1947767981b113821 to your computer and use it in GitHub Desktop.
# Colors via http://clrs.cc/
clrs <- list(
  navy = "#001F3F",
  blue = "#0074D9",
  aqua = "#7FDBFF",
  teal = "#39CCCC",
  olive = "#3D9970",
  green = "#2ECC40",
  lime = "#01FF70",
  yellow = "#FFDC00",
  orange = "#FF851B",
  red = "#FF4136",
  fuchsia = "#F012BE",
  purple = "#B10DC9",
  maroon = "#85144B",
  white = "#FFFFFF",
  silver = "#DDDDDD",
  gray = "#AAAAAA",
  black = "#111111"
)

clrs$navy
#> [1] "#001F3F"

clrs$red
#> [1] "#FF4136"

Created on 2020-09-22 by the reprex package (v0.3.0)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment