Colors in R

This tutorial covers the specification of colors for graphics in R.

Color Specification

Named Colors

When using simple colors, using the predefined color names will usually be adequate and will keep your code readable.

A complete list of available names is below.

barplot(runif(5), col="navy", fg="white", las=1, xaxs='i', yaxs='i', ylim=c(0,1))

abline(a=0, b=0, lwd=3, col="black")
Bar plot with named colors

Hex Codes

When you want to be more specific with your color definitions, you can use RGB hex codes in the same manner as those used in HTML and CSS.

Six-digit codes are in the format #RRGGBB where each color is specified in a two-digit hexadecimal value from 00 to FF.

plot(runif(10), col="#C00000", type="l", lwd=3, fg="white", las=1, xaxs='i', yaxs='i', ylim=c(0,3))

lines(runif(10) + 1, col="#008000", lwd=3)

lines(runif(10) + 2, col="#000080", lwd=3)

abline(a=0, b=0, lwd=3, col="#000000")
Line plot with hex code colors

Hex Codes with Transparency

Eight-digit codes are in the format #RRGGBBAA, with the last two digits specifying alpha (transparency) where 00 is completely transparent (invisible) and FF is completely opaque.

plot(runif(10), col="#C00000", type="l", lwd=3, fg="white", las=1, xaxs='i', yaxs='i', ylim=c(0,3))

lines(runif(10) + 1, col="#008000", lwd=3)

lines(runif(10) + 2, col="#000080", lwd=3)

grid(nx=NA, ny=NULL, lty=1, col="#00000040")

abline(a=0, b=0, lwd=3, col="#000000")
Line plot with semitransparent grid

Tuples

Colors can be specified as RGB, RGBA, HSV, and HSVA tuples, although using this format can be cumbersome unless you need to manipulate colors programattically.

Color levels are specified in the range of 0 to 1, unless the maxColorValue parameter is set differently.

The rgb() and hsv() functions can be used to convert tuples to hex codes.

plot(runif(10), col=rgb(0.7, 0, 0), type="l", lwd=3, fg="white", las=1, xaxs='i', yaxs='i', ylim=c(0,3))

lines(runif(10) + 1, col=rgb(0, 0.5, 0), lwd=3)

lines(runif(10) + 2, col=hsv(2/3, 1, 0.5), lwd=3)

grid(nx=NA, ny=NULL, lty=1, col=hsv(0, 0, 0, 0.25))

abline(a=0, b=0, lwd=3, col=hsv(0, 0, 0))
Line plot with tuple defined colors

Palettes

Color Ramps

Color ramps are palettes of colors interpolated between a fixed set of colors.

The colorRampPalette() takes a vector of colors and returns a function that is passed the number of desired colors

barplot(runif(5), col=colorRampPalette(c("green4", "gray", "navy"))(5), 
	fg="white", las=1, xaxs='i', yaxs='i', ylim=c(0,1))

grid(nx=NA, ny=NULL, lty=1, col="#00000040")

abline(a=0, b=0, lwd=3, col="black")
Bar plot with colors from a color ramp

Color ramps are particularly useful for choropleth maps. The colorRampPalette() function can be passed directly as the pal parameter.

library(sf)

states = st_read("2015-2019-acs-states.geojson")

states = st_transform(states, 3082)

plot(states["Median.Household.Income"], breaks="quantile", 
	pal=colorRampPalette(c("red", "lightgray", "navy")))
Choropleth map from a color ramp

Predefined Color Ramps

R comes with a set of predefined color ramp functions.

rainbow()

barplot(runif(5), col=rainbow(5), fg="white", 
	las=1, xaxs='i', yaxs='i', ylim=c(0,1))

grid(nx=NA, ny=NULL, lty=1, col="#00000040")

abline(a=0, b=0, lwd=3, col="black")
rainbow() color ramp

heat.colors

library(sf)

states = st_read("2015-2019-acs-states.geojson")

states = st_transform(states, 3082)

plot(states["Median.Household.Income"], breaks="quantile", pal=heat.colors)
heat.colors() color ramp

terrain.colors

library(sf)

states = st_read("2015-2019-acs-states.geojson")

states = st_transform(states, 3082)

plot(states["Latitude"], breaks="quantile", pal=terrain.colors)
terrain.colors() color ramp

topo.colors

library(sf)

states = st_read("2015-2019-acs-states.geojson")

states = st_transform(states, 3082)

plot(states["Median.Age"], breaks="quantile", pal=topo.colors)
topo.colors() color ramp

cm.colors

library(sf)

states = st_read("2015-2019-acs-states.geojson")

states = st_transform(states, 3082)

plot(states["Percent.Foreign.Born"], breaks="quantile", pal=cm.colors)
cm.colors() color ramp

Color Names List

The following are available color names in R as listed from the colors() function. Code for creating this listing is here...

Grays (R == G == B)

black (#000000)
gray0 (#000000)
grey0 (#000000)
gray1 (#030303)
grey1 (#030303)
gray2 (#050505)
grey2 (#050505)
gray3 (#080808)
grey3 (#080808)
gray4 (#0a0a0a)
grey4 (#0a0a0a)
gray5 (#0d0d0d)
grey5 (#0d0d0d)
gray6 (#0f0f0f)
grey6 (#0f0f0f)
gray7 (#121212)
grey7 (#121212)
gray8 (#141414)
grey8 (#141414)
gray9 (#171717)
grey9 (#171717)
gray10 (#1a1a1a)
grey10 (#1a1a1a)
gray11 (#1c1c1c)
grey11 (#1c1c1c)
gray12 (#1f1f1f)
grey12 (#1f1f1f)
gray13 (#212121)
grey13 (#212121)
gray14 (#242424)
grey14 (#242424)
gray15 (#262626)
grey15 (#262626)
gray16 (#292929)
grey16 (#292929)
gray17 (#2b2b2b)
grey17 (#2b2b2b)
gray18 (#2e2e2e)
grey18 (#2e2e2e)
gray19 (#303030)
grey19 (#303030)
gray20 (#333333)
grey20 (#333333)
gray21 (#363636)
grey21 (#363636)
gray22 (#383838)
grey22 (#383838)
gray23 (#3b3b3b)
grey23 (#3b3b3b)
gray24 (#3d3d3d)
grey24 (#3d3d3d)
gray25 (#404040)
grey25 (#404040)
gray26 (#424242)
grey26 (#424242)
gray27 (#454545)
grey27 (#454545)
gray28 (#474747)
grey28 (#474747)
gray29 (#4a4a4a)
grey29 (#4a4a4a)
gray30 (#4d4d4d)
grey30 (#4d4d4d)
gray31 (#4f4f4f)
grey31 (#4f4f4f)
gray32 (#525252)
grey32 (#525252)
gray33 (#545454)
grey33 (#545454)
gray34 (#575757)
grey34 (#575757)
gray35 (#595959)
grey35 (#595959)
gray36 (#5c5c5c)
grey36 (#5c5c5c)
gray37 (#5e5e5e)
grey37 (#5e5e5e)
gray38 (#616161)
grey38 (#616161)
gray39 (#636363)
grey39 (#636363)
gray40 (#666666)
grey40 (#666666)
dimgray (#696969)
dimgrey (#696969)
gray41 (#696969)
grey41 (#696969)
gray42 (#6b6b6b)
grey42 (#6b6b6b)
gray43 (#6e6e6e)
grey43 (#6e6e6e)
gray44 (#707070)
grey44 (#707070)
gray45 (#737373)
grey45 (#737373)
gray46 (#757575)
grey46 (#757575)
gray47 (#787878)
grey47 (#787878)
gray48 (#7a7a7a)
grey48 (#7a7a7a)
gray49 (#7d7d7d)
grey49 (#7d7d7d)
gray50 (#7f7f7f)
grey50 (#7f7f7f)
gray51 (#828282)
grey51 (#828282)
gray52 (#858585)
grey52 (#858585)
gray53 (#878787)
grey53 (#878787)
gray54 (#8a8a8a)
grey54 (#8a8a8a)
gray55 (#8c8c8c)
grey55 (#8c8c8c)
gray56 (#8f8f8f)
grey56 (#8f8f8f)
gray57 (#919191)
grey57 (#919191)
gray58 (#949494)
grey58 (#949494)
gray59 (#969696)
grey59 (#969696)
gray60 (#999999)
grey60 (#999999)
gray61 (#9c9c9c)
grey61 (#9c9c9c)
gray62 (#9e9e9e)
grey62 (#9e9e9e)
gray63 (#a1a1a1)
grey63 (#a1a1a1)
gray64 (#a3a3a3)
grey64 (#a3a3a3)
gray65 (#a6a6a6)
grey65 (#a6a6a6)
gray66 (#a8a8a8)
grey66 (#a8a8a8)
darkgray (#a9a9a9)
darkgrey (#a9a9a9)
gray67 (#ababab)
grey67 (#ababab)
gray68 (#adadad)
grey68 (#adadad)
gray69 (#b0b0b0)
grey69 (#b0b0b0)
gray70 (#b3b3b3)
grey70 (#b3b3b3)
gray71 (#b5b5b5)
grey71 (#b5b5b5)
gray72 (#b8b8b8)
grey72 (#b8b8b8)
gray73 (#bababa)
grey73 (#bababa)
gray74 (#bdbdbd)
grey74 (#bdbdbd)
gray (#bebebe)
grey (#bebebe)
gray75 (#bfbfbf)
grey75 (#bfbfbf)
gray76 (#c2c2c2)
grey76 (#c2c2c2)
gray77 (#c4c4c4)
grey77 (#c4c4c4)
gray78 (#c7c7c7)
grey78 (#c7c7c7)
gray79 (#c9c9c9)
grey79 (#c9c9c9)
gray80 (#cccccc)
grey80 (#cccccc)
gray81 (#cfcfcf)
grey81 (#cfcfcf)
gray82 (#d1d1d1)
grey82 (#d1d1d1)
lightgray (#d3d3d3)
lightgrey (#d3d3d3)
gray83 (#d4d4d4)
grey83 (#d4d4d4)
gray84 (#d6d6d6)
grey84 (#d6d6d6)
gray85 (#d9d9d9)
grey85 (#d9d9d9)
gray86 (#dbdbdb)
grey86 (#dbdbdb)
gainsboro (#dcdcdc)
gray87 (#dedede)
grey87 (#dedede)
gray88 (#e0e0e0)
grey88 (#e0e0e0)
gray89 (#e3e3e3)
grey89 (#e3e3e3)
gray90 (#e5e5e5)
grey90 (#e5e5e5)
gray91 (#e8e8e8)
grey91 (#e8e8e8)
gray92 (#ebebeb)
grey92 (#ebebeb)
gray93 (#ededed)
grey93 (#ededed)
gray94 (#f0f0f0)
grey94 (#f0f0f0)
gray95 (#f2f2f2)
grey95 (#f2f2f2)
gray96 (#f5f5f5)
grey96 (#f5f5f5)
whitesmoke (#f5f5f5)
gray97 (#f7f7f7)
grey97 (#f7f7f7)
gray98 (#fafafa)
grey98 (#fafafa)
gray99 (#fcfcfc)
grey99 (#fcfcfc)
white (#ffffff)
gray100 (#ffffff)
grey100 (#ffffff)

Reds (R > G & R > B)

snow4 (#8b8989)
snow3 (#cdc9c9)
snow (#fffafa)
snow1 (#fffafa)
snow2 (#eee9e9)
lavenderblush4 (#8b8386)
lavenderblush3 (#cdc1c5)
floralwhite (#fffaf0)
lavenderblush (#fff0f5)
lavenderblush1 (#fff0f5)
lavenderblush2 (#eee0e5)
seashell4 (#8b8682)
seashell (#fff5ee)
seashell1 (#fff5ee)
seashell2 (#eee5de)
seashell3 (#cdc5bf)
linen (#faf0e6)
oldlace (#fdf5e6)
mistyrose4 (#8b7d7b)
mistyrose3 (#cdb7b5)
mistyrose (#ffe4e1)
mistyrose1 (#ffe4e1)
mistyrose2 (#eed5d2)
cornsilk3 (#cdc8b1)
antiquewhite4 (#8b8378)
cornsilk4 (#8b8878)
cornsilk (#fff8dc)
cornsilk1 (#fff8dc)
cornsilk2 (#eee8cd)
antiquewhite (#faebd7)
antiquewhite1 (#ffefdb)
antiquewhite3 (#cdc0b0)
antiquewhite2 (#eedfcc)
papayawhip (#ffefd5)
lemonchiffon4 (#8b8970)
lemonchiffon3 (#cdc9a5)
blanchedalmond (#ffebcd)
lemonchiffon (#fffacd)
lemonchiffon1 (#fffacd)
lemonchiffon2 (#eee9bf)
bisque3 (#cdb79e)
bisque4 (#8b7d6b)
bisque2 (#eed5b7)
bisque (#ffe4c4)
bisque1 (#ffe4c4)
rosybrown (#bc8f8f)
rosybrown1 (#ffc1c1)
rosybrown2 (#eeb4b4)
rosybrown3 (#cd9b9b)
rosybrown4 (#8b6969)
pink (#ffc0cb)
wheat4 (#8b7e66)
wheat3 (#cdba96)
wheat2 (#eed8ae)
wheat (#f5deb3)
wheat1 (#ffe7ba)
peachpuff2 (#eecbad)
peachpuff3 (#cdaf95)
peachpuff4 (#8b7765)
peachpuff (#ffdab9)
peachpuff1 (#ffdab9)
palegoldenrod (#eee8aa)
lightpink (#ffb6c1)
pink4 (#8b636c)
pink2 (#eea9b8)
moccasin (#ffe4b5)
pink1 (#ffb5c5)
pink3 (#cd919e)
lightpink4 (#8b5f65)
lightpink3 (#cd8c95)
lightpink1 (#ffaeb9)
lightpink2 (#eea2ad)
navajowhite (#ffdead)
navajowhite1 (#ffdead)
navajowhite3 (#cdb38b)
navajowhite2 (#eecfa1)
navajowhite4 (#8b795e)
tan (#d2b48c)
burlywood4 (#8b7355)
burlywood3 (#cdaa7d)
burlywood2 (#eec591)
burlywood (#deb887)
burlywood1 (#ffd39b)
khaki (#f0e68c)
darkkhaki (#bdb76b)
khaki4 (#8b864e)
khaki3 (#cdc673)
khaki1 (#fff68f)
khaki2 (#eee685)
lightgoldenrod4 (#8b814c)
lightgoldenrod3 (#cdbe70)
lightgoldenrod (#eedd82)
lightgoldenrod2 (#eedc82)
lightgoldenrod1 (#ffec8b)
lightcoral (#f08080)
darksalmon (#e9967a)
orchid (#da70d6)
orchid1 (#ff83fa)
orchid2 (#ee7ae9)
orchid3 (#cd69c9)
palevioletred (#db7093)
orchid4 (#8b4789)
palevioletred4 (#8b475d)
palevioletred1 (#ff82ab)
palevioletred2 (#ee799f)
palevioletred3 (#cd6889)
lightsalmon2 (#ee9572)
lightsalmon (#ffa07a)
lightsalmon1 (#ffa07a)
lightsalmon3 (#cd8162)
lightsalmon4 (#8b5742)
hotpink3 (#cd6090)
salmon (#fa8072)
indianred (#cd5c5c)
hotpink2 (#ee6aa7)
hotpink1 (#ff6eb4)
hotpink4 (#8b3a62)
indianred4 (#8b3a3a)
indianred2 (#ee6363)
indianred1 (#ff6a6a)
indianred3 (#cd5555)
salmon2 (#ee8262)
hotpink (#ff69b4)
salmon1 (#ff8c69)
salmon4 (#8b4c39)
salmon3 (#cd7054)
sandybrown (#f4a460)
coral4 (#8b3e2f)
coral1 (#ff7256)
coral3 (#cd5b45)
coral2 (#ee6a50)
coral (#ff7f50)
tan1 (#ffa54f)
tan4 (#8b5a2b)
peru (#cd853f)
tan3 (#cd853f)
tan2 (#ee9a49)
sienna (#a0522d)
sienna1 (#ff8247)
tomato (#ff6347)
tomato1 (#ff6347)
sienna3 (#cd6839)
tomato3 (#cd4f39)
sienna2 (#ee7942)
tomato2 (#ee5c42)
sienna4 (#8b4726)
tomato4 (#8b3626)
maroon (#b03060)
brown (#a52a2a)
brown4 (#8b2323)
brown1 (#ff4040)
brown3 (#cd3333)
brown2 (#ee3b3b)
violetred4 (#8b2252)
violetred3 (#cd3278)
violetred2 (#ee3a8c)
violetred1 (#ff3e96)
maroon1 (#ff34b3)
maroon2 (#ee30a7)
maroon4 (#8b1c62)
maroon3 (#cd2990)
firebrick (#b22222)
firebrick1 (#ff3030)
firebrick4 (#8b1a1a)
firebrick3 (#cd2626)
firebrick2 (#ee2c2c)
violetred (#d02090)
goldenrod (#daa520)
goldenrod1 (#ffc125)
goldenrod4 (#8b6914)
chocolate (#d2691e)
goldenrod2 (#eeb422)
chocolate3 (#cd661d)
goldenrod3 (#cd9b1d)
chocolate1 (#ff7f24)
chocolate2 (#ee7621)
chocolate4 (#8b4513)
saddlebrown (#8b4513)
mediumvioletred (#c71585)
deeppink (#ff1493)
deeppink1 (#ff1493)
deeppink3 (#cd1076)
deeppink2 (#ee1289)
deeppink4 (#8b0a50)
darkgoldenrod (#b8860b)
darkgoldenrod2 (#eead0e)
darkgoldenrod1 (#ffb90f)
darkgoldenrod3 (#cd950c)
darkgoldenrod4 (#8b6508)
darkorange4 (#8b4500)
darkred (#8b0000)
gold4 (#8b7500)
orange4 (#8b5a00)
orangered4 (#8b2500)
red4 (#8b0000)
darkorange3 (#cd6600)
gold3 (#cdad00)
orange3 (#cd8500)
orangered3 (#cd3700)
red3 (#cd0000)
darkorange2 (#ee7600)
gold2 (#eec900)
orange2 (#ee9a00)
orangered2 (#ee4000)
red2 (#ee0000)
darkorange (#ff8c00)
darkorange1 (#ff7f00)
gold (#ffd700)
gold1 (#ffd700)
orange (#ffa500)
orange1 (#ffa500)
orangered (#ff4500)
orangered1 (#ff4500)
red (#ff0000)
red1 (#ff0000)

Blues (B > R & B > G)

ghostwhite (#f8f8ff)
aliceblue (#f0f8ff)
lavender (#e6e6fa)
lightsteelblue (#b0c4de)
lightsteelblue1 (#cae1ff)
lightsteelblue4 (#6e7b8b)
lightsteelblue3 (#a2b5cd)
lightsteelblue2 (#bcd2ee)
lightslategray (#778899)
lightslategrey (#778899)
slategray (#708090)
slategrey (#708090)
slategray2 (#b9d3ee)
slategray4 (#6c7b8b)
slategray1 (#c6e2ff)
slategray3 (#9fb6cd)
powderblue (#b0e0e6)
lightblue (#add8e6)
lightblue3 (#9ac0cd)
lightblue1 (#bfefff)
lightblue4 (#68838b)
lightblue2 (#b2dfee)
lightskyblue4 (#607b8b)
lightskyblue1 (#b0e2ff)
lightskyblue2 (#a4d3ee)
lightskyblue3 (#8db6cd)
cadetblue4 (#53868b)
cadetblue2 (#8ee5ee)
cadetblue1 (#98f5ff)
cadetblue3 (#7ac5cd)
cadetblue (#5f9ea0)
skyblue (#87ceeb)
lightskyblue (#87cefa)
skyblue4 (#4a708b)
skyblue2 (#7ec0ee)
skyblue1 (#87ceff)
skyblue3 (#6ca6cd)
mediumpurple (#9370db)
mediumpurple4 (#5d478b)
mediumpurple1 (#ab82ff)
mediumpurple2 (#9f79ee)
mediumpurple3 (#8968cd)
lightslateblue (#8470ff)
slateblue (#6a5acd)
darkslateblue (#483d8b)
mediumslateblue (#7b68ee)
slateblue1 (#836fff)
slateblue3 (#6959cd)
slateblue2 (#7a67ee)
slateblue4 (#473c8b)
cornflowerblue (#6495ed)
mediumorchid (#ba55d3)
mediumorchid3 (#b452cd)
mediumorchid1 (#e066ff)
mediumorchid2 (#d15fee)
mediumorchid4 (#7a378b)
steelblue (#4682b4)
steelblue4 (#36648b)
steelblue1 (#63b8ff)
steelblue2 (#5cacee)
steelblue3 (#4f94cd)
royalblue (#4169e1)
royalblue3 (#3a5fcd)
royalblue1 (#4876ff)
royalblue2 (#436eee)
royalblue4 (#27408b)
darkorchid (#9932cc)
darkorchid4 (#68228b)
darkorchid3 (#9a32cd)
darkorchid2 (#b23aee)
darkorchid1 (#bf3eff)
midnightblue (#191970)
blueviolet (#8a2be2)
purple1 (#9b30ff)
purple4 (#551a8b)
purple3 (#7d26cd)
purple2 (#912cee)
purple (#a020f0)
dodgerblue2 (#1c86ee)
dodgerblue (#1e90ff)
dodgerblue1 (#1e90ff)
dodgerblue3 (#1874cd)
dodgerblue4 (#104e8b)
navy (#000080)
navyblue (#000080)
blue4 (#00008b)
darkblue (#00008b)
deepskyblue4 (#00688b)
turquoise4 (#00868b)
blue3 (#0000cd)
deepskyblue3 (#009acd)
mediumblue (#0000cd)
turquoise3 (#00c5cd)
darkturquoise (#00ced1)
darkviolet (#9400d3)
blue2 (#0000ee)
deepskyblue2 (#00b2ee)
turquoise2 (#00e5ee)
blue (#0000ff)
blue1 (#0000ff)
deepskyblue (#00bfff)
deepskyblue1 (#00bfff)
turquoise1 (#00f5ff)

Greens (G > R & G > B)

mintcream (#f5fffa)
honeydew4 (#838b83)
honeydew3 (#c1cdc1)
honeydew (#f0fff0)
honeydew1 (#f0fff0)
honeydew2 (#e0eee0)
darkseagreen (#8fbc8f)
darkseagreen1 (#c1ffc1)
darkseagreen2 (#b4eeb4)
darkseagreen3 (#9bcd9b)
darkseagreen4 (#698b69)
palegreen (#98fb98)
lightgreen (#90ee90)
palegreen2 (#90ee90)
palegreen3 (#7ccd7c)
palegreen4 (#548b54)
palegreen1 (#9aff9a)
aquamarine (#7fffd4)
aquamarine1 (#7fffd4)
aquamarine3 (#66cdaa)
mediumaquamarine (#66cdaa)
aquamarine4 (#458b74)
aquamarine2 (#76eec6)
darkolivegreen (#556b2f)
darkolivegreen1 (#caff70)
darkolivegreen3 (#a2cd5a)
darkolivegreen4 (#6e8b3d)
darkolivegreen2 (#bcee68)
mediumturquoise (#48d1cc)
mediumseagreen (#3cb371)
seagreen (#2e8b57)
seagreen4 (#2e8b57)
seagreen1 (#54ff9f)
seagreen2 (#4eee94)
seagreen3 (#43cd80)
turquoise (#40e0d0)
olivedrab (#6b8e23)
forestgreen (#228b22)
olivedrab4 (#698b22)
limegreen (#32cd32)
olivedrab3 (#9acd32)
yellowgreen (#9acd32)
olivedrab2 (#b3ee3a)
olivedrab1 (#c0ff3e)
greenyellow (#adff2f)
lightseagreen (#20b2aa)
darkgreen (#006400)
chartreuse4 (#458b00)
green4 (#008b00)
springgreen4 (#008b45)
chartreuse3 (#66cd00)
green3 (#00cd00)
springgreen3 (#00cd66)
chartreuse2 (#76ee00)
green2 (#00ee00)
springgreen2 (#00ee76)
mediumspringgreen (#00fa9a)
lawngreen (#7cfc00)
chartreuse (#7fff00)
chartreuse1 (#7fff00)
green (#00ff00)
green1 (#00ff00)
springgreen (#00ff7f)
springgreen1 (#00ff7f)

Yellows (R == G & R > B)

ivory4 (#8b8b83)
ivory3 (#cdcdc1)
ivory (#fffff0)
ivory1 (#fffff0)
ivory2 (#eeeee0)
beige (#f5f5dc)
lightyellow (#ffffe0)
lightyellow1 (#ffffe0)
lightyellow2 (#eeeed1)
lightyellow3 (#cdcdb4)
lightyellow4 (#8b8b7a)
lightgoldenrodyellow (#fafad2)
yellow4 (#8b8b00)
yellow3 (#cdcd00)
yellow2 (#eeee00)
yellow (#ffff00)
yellow1 (#ffff00)

Cyans (G == B & G > R)

azure4 (#838b8b)
azure3 (#c1cdcd)
azure (#f0ffff)
azure1 (#f0ffff)
azure2 (#e0eeee)
lightcyan (#e0ffff)
lightcyan1 (#e0ffff)
lightcyan2 (#d1eeee)
lightcyan3 (#b4cdcd)
lightcyan4 (#7a8b8b)
paleturquoise (#afeeee)
paleturquoise4 (#668b8b)
paleturquoise1 (#bbffff)
paleturquoise3 (#96cdcd)
paleturquoise2 (#aeeeee)
darkslategray (#2f4f4f)
darkslategrey (#2f4f4f)
darkslategray2 (#8deeee)
darkslategray1 (#97ffff)
darkslategray3 (#79cdcd)
darkslategray4 (#528b8b)
cyan4 (#008b8b)
darkcyan (#008b8b)
cyan3 (#00cdcd)
cyan2 (#00eeee)
cyan (#00ffff)
cyan1 (#00ffff)

Magentas (R == B & R > G)

thistle4 (#8b7b8b)
thistle (#d8bfd8)
thistle3 (#cdb5cd)
thistle1 (#ffe1ff)
thistle2 (#eed2ee)
plum4 (#8b668b)
plum1 (#ffbbff)
plum3 (#cd96cd)
plum2 (#eeaeee)
plum (#dda0dd)
violet (#ee82ee)
darkmagenta (#8b008b)
magenta4 (#8b008b)
magenta3 (#cd00cd)
magenta2 (#ee00ee)
magenta (#ff00ff)
magenta1 (#ff00ff)