目录
colorlib
有没有碰到过这样的场景:写代码时想要用上丰富的色彩,但苦思冥想搜肠刮肚只记得这几个常用颜色词: 'black', 'white', 'red', 'green', 'blue', 'yellow', 'magenta', 'cyan',是不是有点尴尬。本篇将介绍怎样从现有库中抽取出有用的颜色自己创建一个库,比如seaborn库的colors包以及pygame库的colordict中都定义了很多种颜色,想到就马上行动起来,动手创建一个自定义颜色库——colorlib。
生成代码
使用 python idle 载入以下代码,按f5就能一键生成自定义颜色库 colorlib.py:
from seaborn.colors import xkcd_rgb, crayons
from pygame.colordict import thecolors
str2tuple = lambda s: tuple(map(lambda x:int(x,16),(s[1:3],s[3:5],s[5:])))
tuple2str = lambda t: '#'+hex(t[0]*256**2+t[1]*256+t[2])[2:].rjust(6,'0').upper()
colordict = {}
for k,v in (*thecolors.items(), *xkcd_rgb.items(), *crayons.items()):
colordict[k] = str2tuple(v) if isinstance(v, str) else v[:3]
for c in ('aqua', 'cyan', 'grey', 'pink', 'purple'):
colordict[c.title()] = colordict[c]
_ = 'white','yellow','magenta','red','cyan','green','blue','black'
for k,v in zip(_, ((r,g,b)for r in(255,0)for g in(255,0)for b in(255,0))):
colordict[k] = v
file = open('colorlib.py', 'w', encoding='utf-8')
print('''# -*- coding: utf-8 -*-
# #--------------------------------------------------------------------------
# name: colorlib.py
# author: hann yang (blog: https://hannyang.blog.csdn.net/)
#
# version: 0.7.8
# date: march 20, 2024
#----------------------------------------------------------------------------
"""a module with a class color and some constants and utility functions."""''', file=file)
print('''print(f"colorlib 0.7.8 for python 3.8+", file=__import__('sys').stdout)
print(f"hello from hann yang. ", end='', file=__import__('sys').stderr)
print(f"https://hannyang.blog.csdn.net", file=__import__('sys').stdout)
\nfrom random import randint, sample\n\n__author__ = "hann yang"
__version__ = version = "0.7.8"\n\ncolordict = {''', file=file)
for k,v in colordict.items():
print(f'{chr(34)}{k+chr(34):28} : ({v[0]:>3}, {v[1]:>3}, {v[2]:>3}), {tuple2str(v)}', file=file)
print('}\ncolorstring = {', file=file)
for k,v in colordict.items():
print(f'{chr(34)}{k+chr(34):28} : "{tuple2str(v)}", #({v[0]:>3}, {v[1]:>3}, {v[2]:>3})', file=file)
print('''}\ncolorrgba = {k:(*v,255) for k,v in colordict.items()}
colorlist = list(set(colordict.values()))
str2tuple = lambda cstr: tuple(map(lambda x:int(x,16),(cstr[1:3],cstr[3:5],cstr[5:])))
tuple2str = lambda ctpl:"#"+hex(ctpl[0]*256**2+ctpl[1]*256+ctpl[2])[2:].rjust(6,"0").upper()
colorcount = len(colorlist)\ncolorcount2 = len(colordict)
randcolorname = lambda : list(colordict.keys())[randint(0,colorcount2-1)]
randcolornames = lambda value=3: sample(list(colordict.keys()), value)
randcolortuple = lambda : colorlist[randint(0,colorcount-1)]
randcolortuples = lambda value=3: sample(colorlist, value)
randcolorstring = lambda : list(colorstring.values())[randint(0,colorcount2-1)]
randcolorstrings = lambda value=3: sample(list(colorstring.values()), value)\n
class color:
\'\'\'\n color(3-tuple: tuple) -> color # 3-tuple as (r, g, b)
color(4-tuple: tuple) -> color # 4-tuple as (r, g, b, a)
color(color_name: str) -> color # color_name as 'red','blue',...
color(color_string: str) -> color # color_string as '#rrggbb'
object for color representations.\n \'\'\'
def __init__(self, r=0, g=0, b=0, a=none):
self.__alpha = (a is not none) and isinstance(a, (int, float))
if all(map(lambda r:isinstance(r, (int, float)),(r,g,b))):
self.r, self.g, self.b = map(lambda n:int(n)%256,(r,g,b))
elif isinstance(r, (tuple, list)) and len(r) in (3, 4):
self.r, self.g, self.b, self.a = *[int(c)%256 for c in r[:3]], 255
if len(r)==4: a, self.__alpha = int(r[3])%256, true
elif isinstance(r, str) and len(r)==7 and r.startswith('#'):
self.r, self.g, self.b = str2tuple(r)
elif isinstance(r, str):
if (rgb := colordict.get(r, none)) is none:
raise valueerror("invalid color name")
self.r, self.g, self.b, a = *rgb, 255
else:
raise valueerror("invalid argument for class color")
self.a = a if self.__alpha else 255
self.rgb = self.r, self.g, self.b
self.rgba = self.r, self.g, self.b, self.a
self.value = self.rgba if self.__alpha else self.rgb
self.string = tuple2str(self.value[:3])
self.decimal = tuple(map(lambda x:x/255, self.rgba))
self.name = {v:k for k,v in colordict.items()}.get(self.rgb, 'noname')
def __repr__(self):
rgba = 'rgba(' if self.__alpha else 'rgb('
return ', '.join(map(lambda x:str(x).rjust(3),self.value)).join((rgba,')'))
def randcolor(self):
\'\'\'convert the color to any random color in colordict.keys().\'\'\'
rgb = randcolortuple()
return color(*rgb, self.a) if self.__alpha else color(rgb)
def random(self):
\'\'\'convert rgb to a 3-tuple of random integer between 0 and 255.\'\'\'
rgb = randint(0,255), randint(0,255), randint(0,255)
return color(*rgb, self.a) if self.__alpha else color(rgb)
def alpha(self, a=255):
\'\'\'set alpha value of the color, or change rgb to rgba.\'\'\'
self.__init__(*self.rgb, a)
def equal(self, other):
\'\'\'compare self.rgba with another color's rgba tuple.\'\'\'
return self.rgba == other''', file=file)
file.close()
print('module file "colorlib.py" has been created.')
运行代码需要安装 seaborn, pygame,安装这2两个库同时会附带安装多个库文件,如matplotlib,pyparsing等等:
模块代码
创建完成后,colorlib库一共保存了1546种有名字的颜色,颜色名称共有1698种,因为有部分颜色同名。如不想安装seaborn和pygame这个库,可以把上述代码所创建的内容(见以下代码框)另存为colorlib.py即可。
# -*- coding: utf-8 -*-
# #--------------------------------------------------------------------------
# name: colorlib.py
# author: hann yang (blog: https://hannyang.blog.csdn.net/)
#
# version: 0.7.8
# date: march 20, 2024
#----------------------------------------------------------------------------
"""a module with a class color and some constants and utility functions."""
print(f"colorlib 0.7.8 for python 3.8+", file=__import__('sys').stdout)
print(f"hello from hann yang. ", end='', file=__import__('sys').stderr)
print(f"https://hannyang.blog.csdn.net", file=__import__('sys').stdout)
from random import randint, sample
__author__ = "hann yang"
__version__ = version = "0.7.8"
colordict = {
"aliceblue" : (240, 248, 255), #f0f8ff
"antiquewhite" : (250, 235, 215), #faebd7
"antiquewhite1" : (255, 239, 219), #ffefdb
"antiquewhite2" : (238, 223, 204), #eedfcc
"antiquewhite3" : (205, 192, 176), #cdc0b0
"antiquewhite4" : (139, 131, 120), #8b8378
"aqua" : ( 19, 234, 201), #13eac9
"aquamarine" : ( 4, 216, 178), #04d8b2
"aquamarine1" : (127, 255, 212), #7fffd4
"aquamarine2" : (118, 238, 198), #76eec6
"aquamarine3" : (102, 205, 170), #66cdaa
"aquamarine4" : ( 69, 139, 116), #458b74
"azure" : ( 6, 154, 243), #069af3
"azure1" : (240, 255, 255), #f0ffff
"azure3" : (193, 205, 205), #c1cdcd
"azure2" : (224, 238, 238), #e0eeee
"azure4" : (131, 139, 139), #838b8b
"beige" : (230, 218, 166), #e6daa6
"bisque" : (255, 228, 196), #ffe4c4
"bisque1" : (255, 228, 196), #ffe4c4
"bisque2" : (238, 213, 183), #eed5b7
"bisque3" : (205, 183, 158), #cdb79e
"bisque4" : (139, 125, 107), #8b7d6b
"black" : ( 0, 0, 0), #000000
"blanchedalmond" : (255, 235, 205), #ffebcd
"blue" : ( 3, 67, 223), #0343df
"blue1" : ( 0, 0, 255), #0000ff
"blue2" : ( 0, 0, 238), #0000ee
"blue3" : ( 0, 0, 205), #0000cd
"blue4" : ( 0, 0, 139), #00008b
"blueviolet" : (138, 43, 226), #8a2be2
"brown" : (101, 55, 0), #653700
"brown1" : (255, 64, 64), #ff4040
"brown2" : (238, 59, 59), #ee3b3b
"brown3" : (205, 51, 51), #cd3333
"brown4" : (139, 35, 35), #8b2323
"burlywood" : (222, 184, 135), #deb887
"burlywood1" : (255, 211, 155), #ffd39b
"burlywood2" : (238, 197, 145), #eec591
"burlywood3" : (205, 170, 125), #cdaa7d
"burlywood4" : (139, 115, 85), #8b7355
"cadetblue" : ( 95, 158, 160), #5f9ea0
"cadetblue1" : (152, 245, 255), #98f5ff
"cadetblue2" : (142, 229, 238), #8ee5ee
"cadetblue3" : (122, 197, 205), #7ac5cd
"cadetblue4" : ( 83, 134, 139), #53868b
"chartreuse" : (193, 248, 10), #c1f80a
"chartreuse1" : (127, 255, 0), #7fff00
"chartreuse2" : (118, 238, 0), #76ee00
"chartreuse3" : (102, 205, 0), #66cd00
"chartreuse4" : ( 69, 139, 0), #458b00
"chocolate" : ( 61, 28, 2), #3d1c02
"chocolate1" : (255, 127, 36), #ff7f24
"chocolate2" : (238, 118, 33), #ee7621
"chocolate3" : (205, 102, 29), #cd661d
"chocolate4" : (139, 69, 19), #8b4513
"coral" : (252, 90, 80), #fc5a50
"coral1" : (255, 114, 86), #ff7256
"coral2" : (238, 106, 80), #ee6a50
"coral3" : (205, 91, 69), #cd5b45
"coral4" : (139, 62, 47), #8b3e2f
"cornflowerblue" : (100, 149, 237), #6495ed
"cornsilk" : (255, 248, 220), #fff8dc
"cornsilk1" : (255, 248, 220), #fff8dc
"cornsilk2" : (238, 232, 205), #eee8cd
"cornsilk3" : (205, 200, 177), #cdc8b1
"cornsilk4" : (139, 136, 120), #8b8878
"crimson" : (140, 0, 15), #8c000f
"cyan" : ( 0, 255, 255), #00ffff
"cyan1" : ( 0, 255, 255), #00ffff
"cyan2" : ( 0, 238, 238), #00eeee
"cyan3" : ( 0, 205, 205), #00cdcd
"cyan4" : ( 0, 139, 139), #008b8b
"darkblue" : ( 3, 7, 100), #030764
"darkcyan" : ( 0, 139, 139), #008b8b
"darkgoldenrod" : (184, 134, 11), #b8860b
"darkgoldenrod1" : (255, 185, 15), #ffb90f
"darkgoldenrod2" : (238, 173, 14), #eead0e
"darkgoldenrod3" : (205, 149, 12), #cd950c
"darkgoldenrod4" : (139, 101, 8), #8b6508
"darkgray" : (169, 169, 169), #a9a9a9
"darkgreen" : ( 5, 73, 7), #054907
"darkgrey" : (169, 169, 169), #a9a9a9
"darkkhaki" : (189, 183, 107), #bdb76b
"darkmagenta" : (139, 0, 139), #8b008b
"darkolivegreen" : ( 85, 107, 47), #556b2f
"darkolivegreen1" : (202, 255, 112), #caff70
"darkolivegreen2" : (188, 238, 104), #bcee68
"darkolivegreen3" : (162, 205, 90), #a2cd5a
"darkolivegreen4" : (110, 139, 61), #6e8b3d
"darkorange" : (255, 140, 0), #ff8c00
"darkorange1" : (255, 127, 0), #ff7f00
"darkorange2" : (238, 118, 0), #ee7600
"darkorange3" : (205, 102, 0), #cd6600
"darkorange4" : (139, 69, 0), #8b4500
"darkorchid" : (153, 50, 204), #9932cc
"darkorchid1" : (191, 62, 255), #bf3eff
"darkorchid2" : (178, 58, 238), #b23aee
"darkorchid3" : (154, 50, 205), #9a32cd
"darkorchid4" : (104, 34, 139), #68228b
"darkred" : (139, 0, 0), #8b0000
"darksalmon" : (233, 150, 122), #e9967a
"darkseagreen" : (143, 188, 143), #8fbc8f
"darkseagreen1" : (193, 255, 193), #c1ffc1
"darkseagreen2" : (180, 238, 180), #b4eeb4
"darkseagreen3" : (155, 205, 155), #9bcd9b
"darkseagreen4" : (105, 139, 105), #698b69
"darkslateblue" : ( 72, 61, 139), #483d8b
"darkslategray" : ( 47, 79, 79), #2f4f4f
"darkslategray1" : (151, 255, 255), #97ffff
"darkslategray2" : (141, 238, 238), #8deeee
"darkslategray3" : (121, 205, 205), #79cdcd
"darkslategray4" : ( 82, 139, 139), #528b8b
"darkslategrey" : ( 47, 79, 79), #2f4f4f
"darkturquoise" : ( 0, 206, 209), #00ced1
"darkviolet" : (148, 0, 211), #9400d3
"deeppink" : (255, 20, 147), #ff1493
"deeppink1" : (255, 20, 147), #ff1493
"deeppink2" : (238, 18, 137), #ee1289
"deeppink3" : (205, 16, 118), #cd1076
"deeppink4" : (139, 10, 80), #8b0a50
"deepskyblue" : ( 0, 191, 255), #00bfff
"deepskyblue1" : ( 0, 191, 255), #00bfff
"deepskyblue2" : ( 0, 178, 238), #00b2ee
"deepskyblue3" : ( 0, 154, 205), #009acd
"deepskyblue4" : ( 0, 104, 139), #00688b
"dimgray" : (105, 105, 105), #696969
"dimgrey" : (105, 105, 105), #696969
"dodgerblue" : ( 30, 144, 255), #1e90ff
"dodgerblue1" : ( 30, 144, 255), #1e90ff
"dodgerblue2" : ( 28, 134, 238), #1c86ee
"dodgerblue3" : ( 24, 116, 205), #1874cd
"dodgerblue4" : ( 16, 78, 139), #104e8b
"firebrick" : (178, 34, 34), #b22222
"firebrick1" : (255, 48, 48), #ff3030
"firebrick2" : (238, 44, 44), #ee2c2c
"firebrick3" : (205, 38, 38), #cd2626
"firebrick4" : (139, 26, 26), #8b1a1a
"floralwhite" : (255, 250, 240), #fffaf0
"forestgreen" : ( 34, 139, 34), #228b22
"fuchsia" : (237, 13, 217), #ed0dd9
"gainsboro" : (220, 220, 220), #dcdcdc
"ghostwhite" : (248, 248, 255), #f8f8ff
"gold" : (219, 180, 12), #dbb40c
"gold1" : (255, 215, 0), #ffd700
"gold2" : (238, 201, 0), #eec900
"gold3" : (205, 173, 0), #cdad00
"gold4" : (139, 117, 0), #8b7500
"goldenrod" : (250, 194, 5), #fac205
"goldenrod1" : (255, 193, 37), #ffc125
"goldenrod2" : (238, 180, 34), #eeb422
"goldenrod3" : (205, 155, 29), #cd9b1d
"goldenrod4" : (139, 105, 20), #8b6914
"gray" : (190, 190, 190), #bebebe
"gray0" : ( 0, 0, 0), #000000
"gray1" : ( 3, 3, 3), #030303
"gray2" : ( 5, 5, 5), #050505
"gray3" : ( 8, 8, 8), #080808
"gray4" : ( 10, 10, 10), #0a0a0a
"gray5" : ( 13, 13, 13), #0d0d0d
"gray6" : ( 15, 15, 15), #0f0f0f
"gray7" : ( 18, 18, 18), #121212
"gray8" : ( 20, 20, 20), #141414
"gray9" : ( 23, 23, 23), #171717
"gray10" : ( 26, 26, 26), #1a1a1a
"gray11" : ( 28, 28, 28), #1c1c1c
"gray12" : ( 31, 31, 31), #1f1f1f
"gray13" : ( 33, 33, 33), #212121
"gray14" : ( 36, 36, 36), #242424
"gray15" : ( 38, 38, 38), #262626
"gray16" : ( 41, 41, 41), #292929
"gray17" : ( 43, 43, 43), #2b2b2b
"gray18" : ( 46, 46, 46), #2e2e2e
"gray19" : ( 48, 48, 48), #303030
"gray20" : ( 51, 51, 51), #333333
"gray21" : ( 54, 54, 54), #363636
"gray22" : ( 56, 56, 56), #383838
"gray23" : ( 59, 59, 59), #3b3b3b
"gray24" : ( 61, 61, 61), #3d3d3d
"gray25" : ( 64, 64, 64), #404040
"gray26" : ( 66, 66, 66), #424242
"gray27" : ( 69, 69, 69), #454545
"gray28" : ( 71, 71, 71), #474747
"gray29" : ( 74, 74, 74), #4a4a4a
"gray30" : ( 77, 77, 77), #4d4d4d
"gray31" : ( 79, 79, 79), #4f4f4f
"gray32" : ( 82, 82, 82), #525252
"gray33" : ( 84, 84, 84), #545454
"gray34" : ( 87, 87, 87), #575757
"gray35" : ( 89, 89, 89), #595959
"gray36" : ( 92, 92, 92), #5c5c5c
"gray37" : ( 94, 94, 94), #5e5e5e
"gray38" : ( 97, 97, 97), #616161
"gray39" : ( 99, 99, 99), #636363
"gray40" : (102, 102, 102), #666666
"gray41" : (105, 105, 105), #696969
"gray42" : (107, 107, 107), #6b6b6b
"gray43" : (110, 110, 110), #6e6e6e
"gray44" : (112, 112, 112), #707070
"gray45" : (115, 115, 115), #737373
"gray46" : (117, 117, 117), #757575
"gray47" : (120, 120, 120), #787878
"gray48" : (122, 122, 122), #7a7a7a
"gray49" : (125, 125, 125), #7d7d7d
"gray50" : (127, 127, 127), #7f7f7f
"gray51" : (130, 130, 130), #828282
"gray52" : (133, 133, 133), #858585
"gray53" : (135, 135, 135), #878787
"gray54" : (138, 138, 138), #8a8a8a
"gray55" : (140, 140, 140), #8c8c8c
"gray56" : (143, 143, 143), #8f8f8f
"gray57" : (145, 145, 145), #919191
"gray58" : (148, 148, 148), #949494
"gray59" : (150, 150, 150), #969696
"gray60" : (153, 153, 153), #999999
"gray61" : (156, 156, 156), #9c9c9c
"gray62" : (158, 158, 158), #9e9e9e
"gray63" : (161, 161, 161), #a1a1a1
"gray64" : (163, 163, 163), #a3a3a3
"gray65" : (166, 166, 166), #a6a6a6
"gray66" : (168, 168, 168), #a8a8a8
"gray67" : (171, 171, 171), #ababab
"gray68" : (173, 173, 173), #adadad
"gray69" : (176, 176, 176), #b0b0b0
"gray70" : (179, 179, 179), #b3b3b3
"gray71" : (181, 181, 181), #b5b5b5
"gray72" : (184, 184, 184), #b8b8b8
"gray73" : (186, 186, 186), #bababa
"gray74" : (189, 189, 189), #bdbdbd
"gray75" : (191, 191, 191), #bfbfbf
"gray76" : (194, 194, 194), #c2c2c2
"gray77" : (196, 196, 196), #c4c4c4
"gray78" : (199, 199, 199), #c7c7c7
"gray79" : (201, 201, 201), #c9c9c9
"gray80" : (204, 204, 204), #cccccc
"gray81" : (207, 207, 207), #cfcfcf
"gray82" : (209, 209, 209), #d1d1d1
"gray83" : (212, 212, 212), #d4d4d4
"gray84" : (214, 214, 214), #d6d6d6
"gray85" : (217, 217, 217), #d9d9d9
"gray86" : (219, 219, 219), #dbdbdb
"gray87" : (222, 222, 222), #dedede
"gray88" : (224, 224, 224), #e0e0e0
"gray89" : (227, 227, 227), #e3e3e3
"gray90" : (229, 229, 229), #e5e5e5
"gray91" : (232, 232, 232), #e8e8e8
"gray92" : (235, 235, 235), #ebebeb
"gray93" : (237, 237, 237), #ededed
"gray94" : (240, 240, 240), #f0f0f0
"gray95" : (242, 242, 242), #f2f2f2
"gray96" : (245, 245, 245), #f5f5f5
"gray97" : (247, 247, 247), #f7f7f7
"gray98" : (250, 250, 250), #fafafa
"gray99" : (252, 252, 252), #fcfcfc
"gray100" : (255, 255, 255), #ffffff
"green" : ( 21, 176, 26), #15b01a
"green1" : ( 0, 255, 0), #00ff00
"green2" : ( 0, 238, 0), #00ee00
"green3" : ( 0, 205, 0), #00cd00
"green4" : ( 0, 139, 0), #008b00
"greenyellow" : (173, 255, 47), #adff2f
"grey" : (146, 149, 145), #929591
"grey0" : ( 0, 0, 0), #000000
"grey1" : ( 3, 3, 3), #030303
"grey2" : ( 5, 5, 5), #050505
"grey3" : ( 8, 8, 8), #080808
"grey4" : ( 10, 10, 10), #0a0a0a
"grey5" : ( 13, 13, 13), #0d0d0d
"grey6" : ( 15, 15, 15), #0f0f0f
"grey7" : ( 18, 18, 18), #121212
"grey8" : ( 20, 20, 20), #141414
"grey9" : ( 23, 23, 23), #171717
"grey10" : ( 26, 26, 26), #1a1a1a
"grey11" : ( 28, 28, 28), #1c1c1c
"grey12" : ( 31, 31, 31), #1f1f1f
"grey13" : ( 33, 33, 33), #212121
"grey14" : ( 36, 36, 36), #242424
"grey15" : ( 38, 38, 38), #262626
"grey16" : ( 41, 41, 41), #292929
"grey17" : ( 43, 43, 43), #2b2b2b
"grey18" : ( 46, 46, 46), #2e2e2e
"grey19" : ( 48, 48, 48), #303030
"grey20" : ( 51, 51, 51), #333333
"grey21" : ( 54, 54, 54), #363636
"grey22" : ( 56, 56, 56), #383838
"grey23" : ( 59, 59, 59), #3b3b3b
"grey24" : ( 61, 61, 61), #3d3d3d
"grey25" : ( 64, 64, 64), #404040
"grey26" : ( 66, 66, 66), #424242
"grey27" : ( 69, 69, 69), #454545
"grey28" : ( 71, 71, 71), #474747
"grey29" : ( 74, 74, 74), #4a4a4a
"grey30" : ( 77, 77, 77), #4d4d4d
"grey31" : ( 79, 79, 79), #4f4f4f
"grey32" : ( 82, 82, 82), #525252
"grey33" : ( 84, 84, 84), #545454
"grey34" : ( 87, 87, 87), #575757
"grey35" : ( 89, 89, 89), #595959
"grey36" : ( 92, 92, 92), #5c5c5c
"grey37" : ( 94, 94, 94), #5e5e5e
"grey38" : ( 97, 97, 97), #616161
"grey39" : ( 99, 99, 99), #636363
"grey40" : (102, 102, 102), #666666
"grey41" : (105, 105, 105), #696969
"grey42" : (107, 107, 107), #6b6b6b
"grey43" : (110, 110, 110), #6e6e6e
"grey44" : (112, 112, 112), #707070
"grey45" : (115, 115, 115), #737373
"grey46" : (117, 117, 117), #757575
"grey47" : (120, 120, 120), #787878
"grey48" : (122, 122, 122), #7a7a7a
"grey49" : (125, 125, 125), #7d7d7d
"grey50" : (127, 127, 127), #7f7f7f
"grey51" : (130, 130, 130), #828282
"grey52" : (133, 133, 133), #858585
"grey53" : (135, 135, 135), #878787
"grey54" : (138, 138, 138), #8a8a8a
"grey55" : (140, 140, 140), #8c8c8c
"grey56" : (143, 143, 143), #8f8f8f
"grey57" : (145, 145, 145), #919191
"grey58" : (148, 148, 148), #949494
"grey59" : (150, 150, 150), #969696
"grey60" : (153, 153, 153), #999999
"grey61" : (156, 156, 156), #9c9c9c
"grey62" : (158, 158, 158), #9e9e9e
"grey63" : (161, 161, 161), #a1a1a1
"grey64" : (163, 163, 163), #a3a3a3
"grey65" : (166, 166, 166), #a6a6a6
"grey66" : (168, 168, 168), #a8a8a8
"grey67" : (171, 171, 171), #ababab
"grey68" : (173, 173, 173), #adadad
"grey69" : (176, 176, 176), #b0b0b0
"grey70" : (179, 179, 179), #b3b3b3
"grey71" : (181, 181, 181), #b5b5b5
"grey72" : (184, 184, 184), #b8b8b8
"grey73" : (186, 186, 186), #bababa
"grey74" : (189, 189, 189), #bdbdbd
"grey75" : (191, 191, 191), #bfbfbf
"grey76" : (194, 194, 194), #c2c2c2
"grey77" : (196, 196, 196), #c4c4c4
"grey78" : (199, 199, 199), #c7c7c7
"grey79" : (201, 201, 201), #c9c9c9
"grey80" : (204, 204, 204), #cccccc
"grey81" : (207, 207, 207), #cfcfcf
"grey82" : (209, 209, 209), #d1d1d1
"grey83" : (212, 212, 212), #d4d4d4
"grey84" : (214, 214, 214), #d6d6d6
"grey85" : (217, 217, 217), #d9d9d9
"grey86" : (219, 219, 219), #dbdbdb
"grey87" : (222, 222, 222), #dedede
"grey88" : (224, 224, 224), #e0e0e0
"grey89" : (227, 227, 227), #e3e3e3
"grey90" : (229, 229, 229), #e5e5e5
"grey91" : (232, 232, 232), #e8e8e8
"grey92" : (235, 235, 235), #ebebeb
"grey93" : (237, 237, 237), #ededed
"grey94" : (240, 240, 240), #f0f0f0
"grey95" : (242, 242, 242), #f2f2f2
"grey96" : (245, 245, 245), #f5f5f5
"grey97" : (247, 247, 247), #f7f7f7
"grey98" : (250, 250, 250), #fafafa
"grey99" : (252, 252, 252), #fcfcfc
"grey100" : (255, 255, 255), #ffffff
"honeydew" : (240, 255, 240), #f0fff0
"honeydew1" : (240, 255, 240), #f0fff0
"honeydew2" : (224, 238, 224), #e0eee0
"honeydew3" : (193, 205, 193), #c1cdc1
"honeydew4" : (131, 139, 131), #838b83
"hotpink" : (255, 105, 180), #ff69b4
"hotpink1" : (255, 110, 180), #ff6eb4
"hotpink2" : (238, 106, 167), #ee6aa7
"hotpink3" : (205, 96, 144), #cd6090
"hotpink4" : (139, 58, 98), #8b3a62
"indianred" : (205, 92, 92), #cd5c5c
"indianred1" : (255, 106, 106), #ff6a6a
"indianred2" : (238, 99, 99), #ee6363
"indianred3" : (205, 85, 85), #cd5555
"indianred4" : (139, 58, 58), #8b3a3a
"indigo" : ( 56, 2, 130), #380282
"ivory" : (255, 255, 203), #ffffcb
"ivory1" : (255, 255, 240), #fffff0
"ivory2" : (238, 238, 224), #eeeee0
"ivory3" : (205, 205, 193), #cdcdc1
"ivory4" : (139, 139, 131), #8b8b83
"khaki" : (170, 166, 98), #aaa662
"khaki1" : (255, 246, 143), #fff68f
"khaki2" : (238, 230, 133), #eee685
"khaki3" : (205, 198, 115), #cdc673
"khaki4" : (139, 134, 78), #8b864e
"lavender" : (199, 159, 239), #c79fef
"lavenderblush" : (255, 240, 245), #fff0f5
"lavenderblush1" : (255, 240, 245), #fff0f5
"lavenderblush2" : (238, 224, 229), #eee0e5
"lavenderblush3" : (205, 193, 197), #cdc1c5
"lavenderblush4" : (139, 131, 134), #8b8386
"lawngreen" : (124, 252, 0), #7cfc00
"lemonchiffon" : (255, 250, 205), #fffacd
"lemonchiffon1" : (255, 250, 205), #fffacd
"lemonchiffon2" : (238, 233, 191), #eee9bf
"lemonchiffon3" : (205, 201, 165), #cdc9a5
"lemonchiffon4" : (139, 137, 112), #8b8970
"lightblue" : (123, 200, 246), #7bc8f6
"lightblue1" : (191, 239, 255), #bfefff
"lightblue2" : (178, 223, 238), #b2dfee
"lightblue3" : (154, 192, 205), #9ac0cd
"lightblue4" : (104, 131, 139), #68838b
"lightcoral" : (240, 128, 128), #f08080
"lightcyan" : (224, 255, 255), #e0ffff
"lightcyan1" : (224, 255, 255), #e0ffff
"lightcyan2" : (209, 238, 238), #d1eeee
"lightcyan3" : (180, 205, 205), #b4cdcd
"lightcyan4" : (122, 139, 139), #7a8b8b
"lightgoldenrod" : (238, 221, 130), #eedd82
"lightgoldenrod1" : (255, 236, 139), #ffec8b
"lightgoldenrod2" : (238, 220, 130), #eedc82
"lightgoldenrod3" : (205, 190, 112), #cdbe70
"lightgoldenrod4" : (139, 129, 76), #8b814c
"lightgoldenrodyellow" : (250, 250, 210), #fafad2
"lightgray" : (211, 211, 211), #d3d3d3
"lightgreen" : (118, 255, 123), #76ff7b
"lightgrey" : (211, 211, 211), #d3d3d3
"lightpink" : (255, 182, 193), #ffb6c1
"lightpink1" : (255, 174, 185), #ffaeb9
"lightpink2" : (238, 162, 173), #eea2ad
"lightpink3" : (205, 140, 149), #cd8c95
"lightpink4" : (139, 95, 101), #8b5f65
"lightsalmon" : (255, 160, 122), #ffa07a
"lightsalmon1" : (255, 160, 122), #ffa07a
"lightsalmon2" : (238, 149, 114), #ee9572
"lightsalmon3" : (205, 129, 98), #cd8162
"lightsalmon4" : (139, 87, 66), #8b5742
"lightseagreen" : ( 32, 178, 170), #20b2aa
"lightskyblue" : (135, 206, 250), #87cefa
"lightskyblue1" : (176, 226, 255), #b0e2ff
"lightskyblue2" : (164, 211, 238), #a4d3ee
"lightskyblue3" : (141, 182, 205), #8db6cd
"lightskyblue4" : ( 96, 123, 139), #607b8b
"lightslateblue" : (132, 112, 255), #8470ff
"lightslategray" : (119, 136, 153), #778899
"lightslategrey" : (119, 136, 153), #778899
"lightsteelblue" : (176, 196, 222), #b0c4de
"lightsteelblue1" : (202, 225, 255), #cae1ff
"lightsteelblue2" : (188, 210, 238), #bcd2ee
"lightsteelblue3" : (162, 181, 205), #a2b5cd
"lightsteelblue4" : (110, 123, 139), #6e7b8b
"lightyellow" : (255, 255, 224), #ffffe0
"lightyellow1" : (255, 255, 224), #ffffe0
"lightyellow2" : (238, 238, 209), #eeeed1
"lightyellow3" : (205, 205, 180), #cdcdb4
"lightyellow4" : (139, 139, 122), #8b8b7a
"linen" : (250, 240, 230), #faf0e6
"lime" : (170, 255, 50), #aaff32
"limegreen" : ( 50, 205, 50), #32cd32
"magenta" : (194, 0, 120), #c20078
"magenta1" : (255, 0, 255), #ff00ff
"magenta2" : (238, 0, 238), #ee00ee
"magenta3" : (205, 0, 205), #cd00cd
"magenta4" : (139, 0, 139), #8b008b
"maroon" : (101, 0, 33), #650021
"maroon1" : (255, 52, 179), #ff34b3
"maroon2" : (238, 48, 167), #ee30a7
"maroon3" : (205, 41, 144), #cd2990
"maroon4" : (139, 28, 98), #8b1c62
"mediumaquamarine" : (102, 205, 170), #66cdaa
"mediumblue" : ( 0, 0, 205), #0000cd
"mediumorchid" : (186, 85, 211), #ba55d3
"mediumorchid1" : (224, 102, 255), #e066ff
"mediumorchid2" : (209, 95, 238), #d15fee
"mediumorchid3" : (180, 82, 205), #b452cd
"mediumorchid4" : (122, 55, 139), #7a378b
"mediumpurple" : (147, 112, 219), #9370db
"mediumpurple1" : (171, 130, 255), #ab82ff
"mediumpurple2" : (159, 121, 238), #9f79ee
"mediumpurple3" : (137, 104, 205), #8968cd
"mediumpurple4" : ( 93, 71, 139), #5d478b
"mediumseagreen" : ( 60, 179, 113), #3cb371
"mediumslateblue" : (123, 104, 238), #7b68ee
"mediumspringgreen" : ( 0, 250, 154), #00fa9a
"mediumturquoise" : ( 72, 209, 204), #48d1cc
"mediumvioletred" : (199, 21, 133), #c71585
"midnightblue" : ( 25, 25, 112), #191970
"mintcream" : (245, 255, 250), #f5fffa
"mistyrose" : (255, 228, 225), #ffe4e1
"mistyrose1" : (255, 228, 225), #ffe4e1
"mistyrose2" : (238, 213, 210), #eed5d2
"mistyrose3" : (205, 183, 181), #cdb7b5
"mistyrose4" : (139, 125, 123), #8b7d7b
"moccasin" : (255, 228, 181), #ffe4b5
"navajowhite" : (255, 222, 173), #ffdead
"navajowhite1" : (255, 222, 173), #ffdead
"navajowhite2" : (238, 207, 161), #eecfa1
"navajowhite3" : (205, 179, 139), #cdb38b
"navajowhite4" : (139, 121, 94), #8b795e
"navy" : ( 1, 21, 62), #01153e
"navyblue" : ( 0, 0, 128), #000080
"oldlace" : (253, 245, 230), #fdf5e6
"olive" : (110, 117, 14), #6e750e
"olivedrab" : (107, 142, 35), #6b8e23
"olivedrab1" : (192, 255, 62), #c0ff3e
"olivedrab2" : (179, 238, 58), #b3ee3a
"olivedrab3" : (154, 205, 50), #9acd32
"olivedrab4" : (105, 139, 34), #698b22
"orange" : (249, 115, 6), #f97306
"orange1" : (255, 165, 0), #ffa500
"orange2" : (238, 154, 0), #ee9a00
"orange3" : (205, 133, 0), #cd8500
"orange4" : (139, 90, 0), #8b5a00
"orangered" : (254, 66, 15), #fe420f
"orangered1" : (255, 69, 0), #ff4500
"orangered2" : (238, 64, 0), #ee4000
"orangered3" : (205, 55, 0), #cd3700
"orangered4" : (139, 37, 0), #8b2500
"orchid" : (200, 117, 196), #c875c4
"orchid1" : (255, 131, 250), #ff83fa
"orchid2" : (238, 122, 233), #ee7ae9
"orchid3" : (205, 105, 201), #cd69c9
"orchid4" : (139, 71, 137), #8b4789
"palegreen" : (152, 251, 152), #98fb98
"palegreen1" : (154, 255, 154), #9aff9a
"palegreen2" : (144, 238, 144), #90ee90
"palegreen3" : (124, 205, 124), #7ccd7c
"palegreen4" : ( 84, 139, 84), #548b54
"palegoldenrod" : (238, 232, 170), #eee8aa
"paleturquoise" : (175, 238, 238), #afeeee
"paleturquoise1" : (187, 255, 255), #bbffff
"paleturquoise2" : (174, 238, 238), #aeeeee
"paleturquoise3" : (150, 205, 205), #96cdcd
"paleturquoise4" : (102, 139, 139), #668b8b
"palevioletred" : (219, 112, 147), #db7093
"palevioletred1" : (255, 130, 171), #ff82ab
"palevioletred2" : (238, 121, 159), #ee799f
"palevioletred3" : (205, 104, 137), #cd6889
"palevioletred4" : (139, 71, 93), #8b475d
"papayawhip" : (255, 239, 213), #ffefd5
"peachpuff" : (255, 218, 185), #ffdab9
"peachpuff1" : (255, 218, 185), #ffdab9
"peachpuff2" : (238, 203, 173), #eecbad
"peachpuff3" : (205, 175, 149), #cdaf95
"peachpuff4" : (139, 119, 101), #8b7765
"peru" : (205, 133, 63), #cd853f
"pink" : (255, 129, 192), #ff81c0
"pink1" : (255, 181, 197), #ffb5c5
"pink2" : (238, 169, 184), #eea9b8
"pink3" : (205, 145, 158), #cd919e
"pink4" : (139, 99, 108), #8b636c
"plum" : ( 88, 15, 65), #580f41
"plum1" : (255, 187, 255), #ffbbff
"plum2" : (238, 174, 238), #eeaeee
"plum3" : (205, 150, 205), #cd96cd
"plum4" : (139, 102, 139), #8b668b
"powderblue" : (176, 224, 230), #b0e0e6
"purple" : (126, 30, 156), #7e1e9c
"purple1" : (155, 48, 255), #9b30ff
"purple2" : (145, 44, 238), #912cee
"purple3" : (125, 38, 205), #7d26cd
"purple4" : ( 85, 26, 139), #551a8b
"red" : (229, 0, 0), #e50000
"red1" : (255, 0, 0), #ff0000
"red2" : (238, 0, 0), #ee0000
"red3" : (205, 0, 0), #cd0000
"red4" : (139, 0, 0), #8b0000
"rosybrown" : (188, 143, 143), #bc8f8f
"rosybrown1" : (255, 193, 193), #ffc1c1
"rosybrown2" : (238, 180, 180), #eeb4b4
"rosybrown3" : (205, 155, 155), #cd9b9b
"rosybrown4" : (139, 105, 105), #8b6969
"royalblue" : ( 65, 105, 225), #4169e1
"royalblue1" : ( 72, 118, 255), #4876ff
"royalblue2" : ( 67, 110, 238), #436eee
"royalblue3" : ( 58, 95, 205), #3a5fcd
"royalblue4" : ( 39, 64, 139), #27408b
"salmon" : (255, 121, 108), #ff796c
"salmon1" : (255, 140, 105), #ff8c69
"salmon2" : (238, 130, 98), #ee8262
"salmon3" : (205, 112, 84), #cd7054
"salmon4" : (139, 76, 57), #8b4c39
"saddlebrown" : (139, 69, 19), #8b4513
"sandybrown" : (244, 164, 96), #f4a460
"seagreen" : ( 46, 139, 87), #2e8b57
"seagreen1" : ( 84, 255, 159), #54ff9f
"seagreen2" : ( 78, 238, 148), #4eee94
"seagreen3" : ( 67, 205, 128), #43cd80
"seagreen4" : ( 46, 139, 87), #2e8b57
"seashell" : (255, 245, 238), #fff5ee
"seashell1" : (255, 245, 238), #fff5ee
"seashell2" : (238, 229, 222), #eee5de
"seashell3" : (205, 197, 191), #cdc5bf
"seashell4" : (139, 134, 130), #8b8682
"sienna" : (169, 86, 30), #a9561e
"sienna1" : (255, 130, 71), #ff8247
"sienna2" : (238, 121, 66), #ee7942
"sienna3" : (205, 104, 57), #cd6839
"sienna4" : (139, 71, 38), #8b4726
"silver" : (197, 201, 199), #c5c9c7
"skyblue" : (135, 206, 235), #87ceeb
"skyblue1" : (135, 206, 255), #87ceff
"skyblue2" : (126, 192, 238), #7ec0ee
"skyblue3" : (108, 166, 205), #6ca6cd
"skyblue4" : ( 74, 112, 139), #4a708b
"slateblue" : (106, 90, 205), #6a5acd
"slateblue1" : (131, 111, 255), #836fff
"slateblue2" : (122, 103, 238), #7a67ee
"slateblue3" : (105, 89, 205), #6959cd
"slateblue4" : ( 71, 60, 139), #473c8b
"slategray" : (112, 128, 144), #708090
"slategray1" : (198, 226, 255), #c6e2ff
"slategray2" : (185, 211, 238), #b9d3ee
"slategray3" : (159, 182, 205), #9fb6cd
"slategray4" : (108, 123, 139), #6c7b8b
"slategrey" : (112, 128, 144), #708090
"snow" : (255, 250, 250), #fffafa
"snow1" : (255, 250, 250), #fffafa
"snow2" : (238, 233, 233), #eee9e9
"snow3" : (205, 201, 201), #cdc9c9
"snow4" : (139, 137, 137), #8b8989
"springgreen" : ( 0, 255, 127), #00ff7f
"springgreen1" : ( 0, 255, 127), #00ff7f
"springgreen2" : ( 0, 238, 118), #00ee76
"springgreen3" : ( 0, 205, 102), #00cd66
"springgreen4" : ( 0, 139, 69), #008b45
"steelblue" : ( 70, 130, 180), #4682b4
"steelblue1" : ( 99, 184, 255), #63b8ff
"steelblue2" : ( 92, 172, 238), #5cacee
"steelblue3" : ( 79, 148, 205), #4f94cd
"steelblue4" : ( 54, 100, 139), #36648b
"tan" : (209, 178, 111), #d1b26f
"tan1" : (255, 165, 79), #ffa54f
"tan2" : (238, 154, 73), #ee9a49
"tan3" : (205, 133, 63), #cd853f
"tan4" : (139, 90, 43), #8b5a2b
"teal" : ( 2, 147, 134), #029386
"thistle" : (216, 191, 216), #d8bfd8
"thistle1" : (255, 225, 255), #ffe1ff
"thistle2" : (238, 210, 238), #eed2ee
"thistle3" : (205, 181, 205), #cdb5cd
"thistle4" : (139, 123, 139), #8b7b8b
"tomato" : (239, 64, 38), #ef4026
"tomato1" : (255, 99, 71), #ff6347
"tomato2" : (238, 92, 66), #ee5c42
"tomato3" : (205, 79, 57), #cd4f39
"tomato4" : (139, 54, 38), #8b3626
"turquoise" : ( 6, 194, 172), #06c2ac
"turquoise1" : ( 0, 245, 255), #00f5ff
"turquoise2" : ( 0, 229, 238), #00e5ee
"turquoise3" : ( 0, 197, 205), #00c5cd
"turquoise4" : ( 0, 134, 139), #00868b
"violet" : (154, 14, 234), #9a0eea
"violetred" : (208, 32, 144), #d02090
"violetred1" : (255, 62, 150), #ff3e96
"violetred2" : (238, 58, 140), #ee3a8c
"violetred3" : (205, 50, 120), #cd3278
"violetred4" : (139, 34, 82), #8b2252
"wheat" : (251, 221, 126), #fbdd7e
"wheat1" : (255, 231, 186), #ffe7ba
"wheat2" : (238, 216, 174), #eed8ae
"wheat3" : (205, 186, 150), #cdba96
"wheat4" : (139, 126, 102), #8b7e66
"white" : (255, 255, 255), #ffffff
"whitesmoke" : (245, 245, 245), #f5f5f5
"yellow" : (255, 255, 20), #ffff14
"yellow1" : (255, 255, 0), #ffff00
"yellow2" : (238, 238, 0), #eeee00
"yellow3" : (205, 205, 0), #cdcd00
"yellow4" : (139, 139, 0), #8b8b00
"yellowgreen" : (187, 249, 15), #bbf90f
"acid green" : (143, 254, 9), #8ffe09
"adobe" : (189, 108, 72), #bd6c48
"algae" : ( 84, 172, 104), #54ac68
"algae green" : ( 33, 195, 111), #21c36f
"almost black" : ( 7, 13, 13), #070d0d
"amber" : (254, 179, 8), #feb308
"amethyst" : (155, 95, 192), #9b5fc0
"apple" : (110, 203, 60), #6ecb3c
"apple green" : (118, 205, 38), #76cd26
"apricot" : (255, 177, 109), #ffb16d
"aqua blue" : ( 2, 216, 233), #02d8e9
"aqua green" : ( 18, 225, 147), #12e193
"aqua marine" : ( 46, 232, 187), #2ee8bb
"army green" : ( 75, 93, 22), #4b5d16
"asparagus" : (119, 171, 86), #77ab56
"aubergine" : ( 61, 7, 52), #3d0734
"auburn" : (154, 48, 1), #9a3001
"avocado" : (144, 177, 52), #90b134
"avocado green" : (135, 169, 34), #87a922
"azul" : ( 29, 93, 236), #1d5dec
"baby blue" : (162, 207, 254), #a2cffe
"baby green" : (140, 255, 158), #8cff9e
"baby pink" : (255, 183, 206), #ffb7ce
"baby poo" : (171, 144, 4), #ab9004
"baby poop" : (147, 124, 0), #937c00
"baby poop green" : (143, 152, 5), #8f9805
"baby puke green" : (182, 196, 6), #b6c406
"baby purple" : (202, 155, 247), #ca9bf7
"baby shit brown" : (173, 144, 13), #ad900d
"baby shit green" : (136, 151, 23), #889717
"banana" : (255, 255, 126), #ffff7e
"banana yellow" : (250, 254, 75), #fafe4b
"barbie pink" : (254, 70, 165), #fe46a5
"barf green" : (148, 172, 2), #94ac02
"barney" : (172, 29, 184), #ac1db8
"barney purple" : (160, 4, 152), #a00498
"battleship grey" : (107, 124, 133), #6b7c85
"berry" : (153, 15, 75), #990f4b
"bile" : (181, 195, 6), #b5c306
"bland" : (175, 168, 139), #afa88b
"blood" : (119, 0, 1), #770001
"blood orange" : (254, 75, 3), #fe4b03
"blood red" : (152, 0, 2), #980002
"blue blue" : ( 34, 66, 199), #2242c7
"blue green" : ( 19, 126, 109), #137e6d
"blue grey" : ( 96, 124, 142), #607c8e
"blue purple" : ( 87, 41, 206), #5729ce
"blue violet" : ( 93, 6, 233), #5d06e9
"blue with a hint of purple" : ( 83, 60, 198), #533cc6
"blue/green" : ( 15, 155, 142), #0f9b8e
"blue/grey" : (117, 141, 163), #758da3
"blue/purple" : ( 90, 6, 239), #5a06ef
"blueberry" : ( 70, 65, 150), #464196
"bluegreen" : ( 1, 122, 121), #017a79
"bluegrey" : (133, 163, 178), #85a3b2
"bluey green" : ( 43, 177, 121), #2bb179
"bluey grey" : (137, 160, 176), #89a0b0
"bluey purple" : ( 98, 65, 199), #6241c7
"bluish" : ( 41, 118, 187), #2976bb
"bluish green" : ( 16, 166, 116), #10a674
"bluish grey" : (116, 139, 151), #748b97
"bluish purple" : (112, 59, 231), #703be7
"blurple" : ( 85, 57, 204), #5539cc
"blush" : (242, 158, 142), #f29e8e
"blush pink" : (254, 130, 140), #fe828c
"booger" : (155, 181, 60), #9bb53c
"booger green" : (150, 180, 3), #96b403
"bordeaux" : (123, 0, 44), #7b002c
"boring green" : ( 99, 179, 101), #63b365
"bottle green" : ( 4, 74, 5), #044a05
"brick" : (160, 54, 35), #a03623
"brick orange" : (193, 74, 9), #c14a09
"brick red" : (143, 20, 2), #8f1402
"bright aqua" : ( 11, 249, 234), #0bf9ea
"bright blue" : ( 1, 101, 252), #0165fc
"bright cyan" : ( 65, 253, 254), #41fdfe
"bright green" : ( 1, 255, 7), #01ff07
"bright lavender" : (199, 96, 255), #c760ff
"bright light blue" : ( 38, 247, 253), #26f7fd
"bright light green" : ( 45, 254, 84), #2dfe54
"bright lilac" : (201, 94, 251), #c95efb
"bright lime" : (135, 253, 5), #87fd05
"bright lime green" : (101, 254, 8), #65fe08
"bright magenta" : (255, 8, 232), #ff08e8
"bright olive" : (156, 187, 4), #9cbb04
"bright orange" : (255, 91, 0), #ff5b00
"bright pink" : (254, 1, 177), #fe01b1
"bright purple" : (190, 3, 253), #be03fd
"bright red" : (255, 0, 13), #ff000d
"bright sea green" : ( 5, 255, 166), #05ffa6
"bright sky blue" : ( 2, 204, 254), #02ccfe
"bright teal" : ( 1, 249, 198), #01f9c6
"bright turquoise" : ( 15, 254, 249), #0ffef9
"bright violet" : (173, 10, 253), #ad0afd
"bright yellow" : (255, 253, 1), #fffd01
"bright yellow green" : (157, 255, 0), #9dff00
"british racing green" : ( 5, 72, 13), #05480d
"bronze" : (168, 121, 0), #a87900
"brown green" : (112, 108, 17), #706c11
"brown grey" : (141, 132, 104), #8d8468
"brown orange" : (185, 105, 2), #b96902
"brown red" : (146, 43, 5), #922b05
"brown yellow" : (178, 151, 5), #b29705
"brownish" : (156, 109, 87), #9c6d57
"brownish green" : (106, 110, 9), #6a6e09
"brownish grey" : (134, 119, 95), #86775f
"brownish orange" : (203, 119, 35), #cb7723
"brownish pink" : (194, 126, 121), #c27e79
"brownish purple" : (118, 66, 78), #76424e
"brownish red" : (158, 54, 35), #9e3623
"brownish yellow" : (201, 176, 3), #c9b003
"browny green" : (111, 108, 10), #6f6c0a
"browny orange" : (202, 107, 2), #ca6b02
"bruise" : (126, 64, 113), #7e4071
"bubble gum pink" : (255, 105, 175), #ff69af
"bubblegum" : (255, 108, 181), #ff6cb5
"bubblegum pink" : (254, 131, 204), #fe83cc
"buff" : (254, 246, 158), #fef69e
"burgundy" : ( 97, 0, 35), #610023
"burnt orange" : (192, 78, 1), #c04e01
"burnt red" : (159, 35, 5), #9f2305
"burnt siena" : (183, 82, 3), #b75203
"burnt sienna" : (176, 78, 15), #b04e0f
"burnt umber" : (160, 69, 14), #a0450e
"burnt yellow" : (213, 171, 9), #d5ab09
"burple" : (104, 50, 227), #6832e3
"butter" : (255, 255, 129), #ffff81
"butter yellow" : (255, 253, 116), #fffd74
"butterscotch" : (253, 177, 71), #fdb147
"cadet blue" : ( 78, 116, 150), #4e7496
"camel" : (198, 159, 89), #c69f59
"camo" : (127, 143, 78), #7f8f4e
"camo green" : ( 82, 101, 37), #526525
"camouflage green" : ( 75, 97, 19), #4b6113
"canary" : (253, 255, 99), #fdff63
"canary yellow" : (255, 254, 64), #fffe40
"candy pink" : (255, 99, 233), #ff63e9
"caramel" : (175, 111, 9), #af6f09
"carmine" : (157, 2, 22), #9d0216
"carnation" : (253, 121, 143), #fd798f
"carnation pink" : (255, 127, 167), #ff7fa7
"carolina blue" : (138, 184, 254), #8ab8fe
"celadon" : (190, 253, 183), #befdb7
"celery" : (193, 253, 149), #c1fd95
"cement" : (165, 163, 145), #a5a391
"cerise" : (222, 12, 98), #de0c62
"cerulean" : ( 4, 133, 209), #0485d1
"cerulean blue" : ( 5, 110, 238), #056eee
"charcoal" : ( 52, 56, 55), #343837
"charcoal grey" : ( 60, 65, 66), #3c4142
"cherry" : (207, 2, 52), #cf0234
"cherry red" : (247, 2, 42), #f7022a
"chestnut" : (116, 40, 2), #742802
"chocolate brown" : ( 65, 25, 0), #411900
"cinnamon" : (172, 79, 6), #ac4f06
"claret" : (104, 0, 24), #680018
"clay" : (182, 106, 80), #b66a50
"clay brown" : (178, 113, 61), #b2713d
"clear blue" : ( 36, 122, 253), #247afd
"cloudy blue" : (172, 194, 217), #acc2d9
"cobalt" : ( 30, 72, 143), #1e488f
"cobalt blue" : ( 3, 10, 167), #030aa7
"cocoa" : (135, 95, 66), #875f42
"coffee" : (166, 129, 76), #a6814c
"cool blue" : ( 73, 132, 184), #4984b8
"cool green" : ( 51, 184, 100), #33b864
"cool grey" : (149, 163, 166), #95a3a6
"copper" : (182, 99, 37), #b66325
"coral pink" : (255, 97, 99), #ff6163
"cornflower" : (106, 121, 247), #6a79f7
"cornflower blue" : ( 81, 112, 215), #5170d7
"cranberry" : (158, 0, 58), #9e003a
"cream" : (255, 255, 194), #ffffc2
"creme" : (255, 255, 182), #ffffb6
"custard" : (255, 253, 120), #fffd78
"dandelion" : (254, 223, 8), #fedf08
"dark" : ( 27, 36, 49), #1b2431
"dark aqua" : ( 5, 105, 107), #05696b
"dark aquamarine" : ( 1, 115, 113), #017371
"dark beige" : (172, 147, 98), #ac9362
"dark blue" : ( 0, 3, 91), #00035b
"dark blue green" : ( 0, 82, 73), #005249
"dark blue grey" : ( 31, 59, 77), #1f3b4d
"dark brown" : ( 52, 28, 2), #341c02
"dark coral" : (207, 82, 78), #cf524e
"dark cream" : (255, 243, 154), #fff39a
"dark cyan" : ( 10, 136, 138), #0a888a
"dark forest green" : ( 0, 45, 4), #002d04
"dark fuchsia" : (157, 7, 89), #9d0759
"dark gold" : (181, 148, 16), #b59410
"dark grass green" : ( 56, 128, 4), #388004
"dark green" : ( 3, 53, 0), #033500
"dark green blue" : ( 31, 99, 87), #1f6357
"dark grey" : ( 54, 55, 55), #363737
"dark grey blue" : ( 41, 70, 91), #29465b
"dark hot pink" : (217, 1, 102), #d90166
"dark indigo" : ( 31, 9, 84), #1f0954
"dark khaki" : (155, 143, 85), #9b8f55
"dark lavender" : (133, 103, 152), #856798
"dark lilac" : (156, 109, 165), #9c6da5
"dark lime" : (132, 183, 1), #84b701
"dark lime green" : (126, 189, 1), #7ebd01
"dark magenta" : (150, 0, 86), #960056
"dark maroon" : ( 60, 0, 8), #3c0008
"dark mauve" : (135, 76, 98), #874c62
"dark mint" : ( 72, 192, 114), #48c072
"dark mint green" : ( 32, 192, 115), #20c073
"dark mustard" : (168, 137, 5), #a88905
"dark navy" : ( 0, 4, 53), #000435
"dark navy blue" : ( 0, 2, 46), #00022e
"dark olive" : ( 55, 62, 2), #373e02
"dark olive green" : ( 60, 77, 3), #3c4d03
"dark orange" : (198, 81, 2), #c65102
"dark pastel green" : ( 86, 174, 87), #56ae57
"dark peach" : (222, 126, 93), #de7e5d
"dark periwinkle" : (102, 95, 209), #665fd1
"dark pink" : (203, 65, 107), #cb416b
"dark plum" : ( 63, 1, 44), #3f012c
"dark purple" : ( 53, 6, 62), #35063e
"dark red" : (132, 0, 0), #840000
"dark rose" : (181, 72, 93), #b5485d
"dark royal blue" : ( 2, 6, 111), #02066f
"dark sage" : ( 89, 133, 86), #598556
"dark salmon" : (200, 90, 83), #c85a53
"dark sand" : (168, 143, 89), #a88f59
"dark sea green" : ( 17, 135, 93), #11875d
"dark seafoam" : ( 31, 181, 122), #1fb57a
"dark seafoam green" : ( 62, 175, 118), #3eaf76
"dark sky blue" : ( 68, 142, 228), #448ee4
"dark slate blue" : ( 33, 71, 97), #214761
"dark tan" : (175, 136, 74), #af884a
"dark taupe" : (127, 104, 78), #7f684e
"dark teal" : ( 1, 77, 78), #014d4e
"dark turquoise" : ( 4, 92, 90), #045c5a
"dark violet" : ( 52, 1, 63), #34013f
"dark yellow" : (213, 182, 10), #d5b60a
"dark yellow green" : (114, 143, 2), #728f02
"darkish blue" : ( 1, 65, 130), #014182
"darkish green" : ( 40, 124, 55), #287c37
"darkish pink" : (218, 70, 125), #da467d
"darkish purple" : (117, 25, 115), #751973
"darkish red" : (169, 3, 8), #a90308
"deep aqua" : ( 8, 120, 127), #08787f
"deep blue" : ( 4, 2, 115), #040273
"deep brown" : ( 65, 2, 0), #410200
"deep green" : ( 2, 89, 15), #02590f
"deep lavender" : (141, 94, 183), #8d5eb7
"deep lilac" : (150, 110, 189), #966ebd
"deep magenta" : (160, 2, 92), #a0025c
"deep orange" : (220, 77, 1), #dc4d01
"deep pink" : (203, 1, 98), #cb0162
"deep purple" : ( 54, 1, 63), #36013f
"deep red" : (154, 2, 0), #9a0200
"deep rose" : (199, 71, 103), #c74767
"deep sea blue" : ( 1, 84, 130), #015482
"deep sky blue" : ( 13, 117, 248), #0d75f8
"deep teal" : ( 0, 85, 90), #00555a
"deep turquoise" : ( 1, 115, 116), #017374
"deep violet" : ( 73, 6, 72), #490648
"denim" : ( 59, 99, 140), #3b638c
"denim blue" : ( 59, 91, 146), #3b5b92
"desert" : (204, 173, 96), #ccad60
"diarrhea" : (159, 131, 3), #9f8303
"dirt" : (138, 110, 69), #8a6e45
"dirt brown" : (131, 101, 57), #836539
"dirty blue" : ( 63, 130, 157), #3f829d
"dirty green" : (102, 126, 44), #667e2c
"dirty orange" : (200, 118, 6), #c87606
"dirty pink" : (202, 123, 128), #ca7b80
"dirty purple" : (115, 74, 101), #734a65
"dirty yellow" : (205, 197, 10), #cdc50a
"dodger blue" : ( 62, 130, 252), #3e82fc
"drab" : (130, 131, 68), #828344
"drab green" : (116, 149, 81), #749551
"dried blood" : ( 75, 1, 1), #4b0101
"duck egg blue" : (195, 251, 244), #c3fbf4
"dull blue" : ( 73, 117, 156), #49759c
"dull brown" : (135, 110, 75), #876e4b
"dull green" : (116, 166, 98), #74a662
"dull orange" : (216, 134, 59), #d8863b
"dull pink" : (213, 134, 157), #d5869d
"dull purple" : (132, 89, 126), #84597e
"dull red" : (187, 63, 63), #bb3f3f
"dull teal" : ( 95, 158, 143), #5f9e8f
"dull yellow" : (238, 220, 91), #eedc5b
"dusk" : ( 78, 84, 129), #4e5481
"dusk blue" : ( 38, 83, 141), #26538d
"dusky blue" : ( 71, 95, 148), #475f94
"dusky pink" : (204, 122, 139), #cc7a8b
"dusky purple" : (137, 91, 123), #895b7b
"dusky rose" : (186, 104, 115), #ba6873
"dust" : (178, 153, 110), #b2996e
"dusty blue" : ( 90, 134, 173), #5a86ad
"dusty green" : (118, 169, 115), #76a973
"dusty lavender" : (172, 134, 168), #ac86a8
"dusty orange" : (240, 131, 58), #f0833a
"dusty pink" : (213, 138, 148), #d58a94
"dusty purple" : (130, 95, 135), #825f87
"dusty red" : (185, 72, 78), #b9484e
"dusty rose" : (192, 115, 122), #c0737a
"dusty teal" : ( 76, 144, 133), #4c9085
"earth" : (162, 101, 62), #a2653e
"easter green" : (140, 253, 126), #8cfd7e
"easter purple" : (192, 113, 254), #c071fe
"ecru" : (254, 255, 202), #feffca
"egg shell" : (255, 252, 196), #fffcc4
"eggplant" : ( 56, 8, 53), #380835
"eggplant purple" : ( 67, 5, 65), #430541
"eggshell" : (255, 255, 212), #ffffd4
"eggshell blue" : (196, 255, 247), #c4fff7
"electric blue" : ( 6, 82, 255), #0652ff
"electric green" : ( 33, 252, 13), #21fc0d
"electric lime" : (168, 255, 4), #a8ff04
"electric pink" : (255, 4, 144), #ff0490
"electric purple" : (170, 35, 255), #aa23ff
"emerald" : ( 1, 160, 73), #01a049
"emerald green" : ( 2, 143, 30), #028f1e
"evergreen" : ( 5, 71, 42), #05472a
"faded blue" : (101, 140, 187), #658cbb
"faded green" : (123, 178, 116), #7bb274
"faded orange" : (240, 148, 77), #f0944d
"faded pink" : (222, 157, 172), #de9dac
"faded purple" : (145, 110, 153), #916e99
"faded red" : (211, 73, 78), #d3494e
"faded yellow" : (254, 255, 127), #feff7f
"fawn" : (207, 175, 123), #cfaf7b
"fern" : ( 99, 169, 80), #63a950
"fern green" : ( 84, 141, 68), #548d44
"fire engine red" : (254, 0, 2), #fe0002
"flat blue" : ( 60, 115, 168), #3c73a8
"flat green" : (105, 157, 76), #699d4c
"fluorescent green" : ( 8, 255, 8), #08ff08
"fluro green" : ( 10, 255, 2), #0aff02
"foam green" : (144, 253, 169), #90fda9
"forest" : ( 11, 85, 9), #0b5509
"forest green" : ( 6, 71, 12), #06470c
"forrest green" : ( 21, 68, 6), #154406
"french blue" : ( 67, 107, 173), #436bad
"fresh green" : (105, 216, 79), #69d84f
"frog green" : ( 88, 188, 8), #58bc08
"golden" : (245, 191, 3), #f5bf03
"golden brown" : (178, 122, 1), #b27a01
"golden rod" : (249, 188, 8), #f9bc08
"golden yellow" : (254, 198, 21), #fec615
"grape" : (108, 52, 97), #6c3461
"grape purple" : ( 93, 20, 81), #5d1451
"grapefruit" : (253, 89, 86), #fd5956
"grass" : ( 92, 172, 45), #5cac2d
"grass green" : ( 63, 155, 11), #3f9b0b
"grassy green" : ( 65, 156, 3), #419c03
"green apple" : ( 94, 220, 31), #5edc1f
"green blue" : ( 6, 180, 139), #06b48b
"green brown" : ( 84, 78, 3), #544e03
"green grey" : (119, 146, 111), #77926f
"green teal" : ( 12, 181, 119), #0cb577
"green yellow" : (201, 255, 39), #c9ff27
"green/blue" : ( 1, 192, 141), #01c08d
"green/yellow" : (181, 206, 8), #b5ce08
"greenblue" : ( 35, 196, 139), #23c48b
"greenish" : ( 64, 163, 104), #40a368
"greenish beige" : (201, 209, 121), #c9d179
"greenish blue" : ( 11, 139, 135), #0b8b87
"greenish brown" : (105, 97, 18), #696112
"greenish cyan" : ( 42, 254, 183), #2afeb7
"greenish grey" : (150, 174, 141), #96ae8d
"greenish tan" : (188, 203, 122), #bccb7a
"greenish teal" : ( 50, 191, 132), #32bf84
"greenish turquoise" : ( 0, 251, 176), #00fbb0
"greenish yellow" : (205, 253, 2), #cdfd02
"greeny blue" : ( 66, 179, 149), #42b395
"greeny brown" : (105, 96, 6), #696006
"greeny grey" : (126, 160, 122), #7ea07a
"greeny yellow" : (198, 248, 8), #c6f808
"grey blue" : (107, 139, 164), #6b8ba4
"grey brown" : (127, 112, 83), #7f7053
"grey green" : (120, 155, 115), #789b73
"grey pink" : (195, 144, 155), #c3909b
"grey purple" : (130, 109, 140), #826d8c
"grey teal" : ( 94, 155, 138), #5e9b8a
"grey/blue" : (100, 125, 142), #647d8e
"grey/green" : (134, 161, 125), #86a17d
"greyblue" : (119, 161, 181), #77a1b5
"greyish" : (168, 164, 149), #a8a495
"greyish blue" : ( 94, 129, 157), #5e819d
"greyish brown" : (122, 106, 79), #7a6a4f
"greyish green" : (130, 166, 125), #82a67d
"greyish pink" : (200, 141, 148), #c88d94
"greyish purple" : (136, 113, 145), #887191
"greyish teal" : (113, 159, 145), #719f91
"gross green" : (160, 191, 22), #a0bf16
"gunmetal" : ( 83, 98, 103), #536267
"hazel" : (142, 118, 24), #8e7618
"heather" : (164, 132, 172), #a484ac
"heliotrope" : (217, 79, 245), #d94ff5
"highlighter green" : ( 27, 252, 6), #1bfc06
"hospital green" : (155, 229, 170), #9be5aa
"hot green" : ( 37, 255, 41), #25ff29
"hot magenta" : (245, 4, 201), #f504c9
"hot pink" : (255, 2, 141), #ff028d
"hot purple" : (203, 0, 245), #cb00f5
"hunter green" : ( 11, 64, 8), #0b4008
"ice" : (214, 255, 250), #d6fffa
"ice blue" : (215, 255, 254), #d7fffe
"icky green" : (143, 174, 34), #8fae22
"indian red" : (133, 14, 4), #850e04
"indigo blue" : ( 58, 24, 177), #3a18b1
"iris" : ( 98, 88, 196), #6258c4
"irish green" : ( 1, 149, 41), #019529
"jade" : ( 31, 167, 116), #1fa774
"jade green" : ( 43, 175, 106), #2baf6a
"jungle green" : ( 4, 130, 67), #048243
"kelley green" : ( 0, 147, 55), #009337
"kelly green" : ( 2, 171, 46), #02ab2e
"kermit green" : ( 92, 178, 0), #5cb200
"key lime" : (174, 255, 110), #aeff6e
"khaki green" : (114, 134, 57), #728639
"kiwi" : (156, 239, 67), #9cef43
"kiwi green" : (142, 229, 63), #8ee53f
"lavender blue" : (139, 136, 248), #8b88f8
"lavender pink" : (221, 133, 215), #dd85d7
"lawn green" : ( 77, 164, 9), #4da409
"leaf" : (113, 170, 52), #71aa34
"leaf green" : ( 92, 169, 4), #5ca904
"leafy green" : ( 81, 183, 59), #51b73b
"leather" : (172, 116, 52), #ac7434
"lemon" : (253, 255, 82), #fdff52
"lemon green" : (173, 248, 2), #adf802
"lemon lime" : (191, 254, 40), #bffe28
"lemon yellow" : (253, 255, 56), #fdff38
"lichen" : (143, 182, 123), #8fb67b
"light aqua" : (140, 255, 219), #8cffdb
"light aquamarine" : (123, 253, 199), #7bfdc7
"light beige" : (255, 254, 182), #fffeb6
"light blue" : (149, 208, 252), #95d0fc
"light blue green" : (126, 251, 179), #7efbb3
"light blue grey" : (183, 201, 226), #b7c9e2
"light bluish green" : (118, 253, 168), #76fda8
"light bright green" : ( 83, 254, 92), #53fe5c
"light brown" : (173, 129, 80), #ad8150
"light burgundy" : (168, 65, 91), #a8415b
"light cyan" : (172, 255, 252), #acfffc
"light eggplant" : (137, 69, 133), #894585
"light forest green" : ( 79, 145, 83), #4f9153
"light gold" : (253, 220, 92), #fddc5c
"light grass green" : (154, 247, 100), #9af764
"light green" : (150, 249, 123), #96f97b
"light green blue" : ( 86, 252, 162), #56fca2
"light greenish blue" : ( 99, 247, 180), #63f7b4
"light grey" : (216, 220, 214), #d8dcd6
"light grey blue" : (157, 188, 212), #9dbcd4
"light grey green" : (183, 225, 161), #b7e1a1
"light indigo" : (109, 90, 207), #6d5acf
"light khaki" : (230, 242, 162), #e6f2a2
"light lavendar" : (239, 192, 254), #efc0fe
"light lavender" : (223, 197, 254), #dfc5fe
"light light blue" : (202, 255, 251), #cafffb
"light light green" : (200, 255, 176), #c8ffb0
"light lilac" : (237, 200, 255), #edc8ff
"light lime" : (174, 253, 108), #aefd6c
"light lime green" : (185, 255, 102), #b9ff66
"light magenta" : (250, 95, 247), #fa5ff7
"light maroon" : (162, 72, 87), #a24857
"light mauve" : (194, 146, 161), #c292a1
"light mint" : (182, 255, 187), #b6ffbb
"light mint green" : (166, 251, 178), #a6fbb2
"light moss green" : (166, 200, 117), #a6c875
"light mustard" : (247, 213, 96), #f7d560
"light navy" : ( 21, 80, 132), #155084
"light navy blue" : ( 46, 90, 136), #2e5a88
"light neon green" : ( 78, 253, 84), #4efd54
"light olive" : (172, 191, 105), #acbf69
"light olive green" : (164, 190, 92), #a4be5c
"light orange" : (253, 170, 72), #fdaa48
"light pastel green" : (178, 251, 165), #b2fba5
"light pea green" : (196, 254, 130), #c4fe82
"light peach" : (255, 216, 177), #ffd8b1
"light periwinkle" : (193, 198, 252), #c1c6fc
"light pink" : (255, 209, 223), #ffd1df
"light plum" : (157, 87, 131), #9d5783
"light purple" : (191, 119, 246), #bf77f6
"light red" : (255, 71, 76), #ff474c
"light rose" : (255, 197, 203), #ffc5cb
"light royal blue" : ( 58, 46, 254), #3a2efe
"light sage" : (188, 236, 172), #bcecac
"light salmon" : (254, 169, 147), #fea993
"light sea green" : (152, 246, 176), #98f6b0
"light seafoam" : (160, 254, 191), #a0febf
"light seafoam green" : (167, 255, 181), #a7ffb5
"light sky blue" : (198, 252, 255), #c6fcff
"light tan" : (251, 238, 172), #fbeeac
"light teal" : (144, 228, 193), #90e4c1
"light turquoise" : (126, 244, 204), #7ef4cc
"light urple" : (179, 111, 246), #b36ff6
"light violet" : (214, 180, 252), #d6b4fc
"light yellow" : (255, 254, 122), #fffe7a
"light yellow green" : (204, 253, 127), #ccfd7f
"light yellowish green" : (194, 255, 137), #c2ff89
"lighter green" : (117, 253, 99), #75fd63
"lighter purple" : (165, 90, 244), #a55af4
"lightish blue" : ( 61, 122, 253), #3d7afd
"lightish green" : ( 97, 225, 96), #61e160
"lightish purple" : (165, 82, 230), #a552e6
"lightish red" : (254, 47, 74), #fe2f4a
"lilac" : (206, 162, 253), #cea2fd
"liliac" : (196, 142, 253), #c48efd
"lime green" : (137, 254, 5), #89fe05
"lime yellow" : (208, 254, 29), #d0fe1d
"lipstick" : (213, 23, 78), #d5174e
"lipstick red" : (192, 2, 47), #c0022f
"macaroni and cheese" : (239, 180, 53), #efb435
"mahogany" : ( 74, 1, 0), #4a0100
"maize" : (244, 208, 84), #f4d054
"mango" : (255, 166, 43), #ffa62b
"manilla" : (255, 250, 134), #fffa86
"marigold" : (252, 192, 6), #fcc006
"marine" : ( 4, 46, 96), #042e60
"marine blue" : ( 1, 56, 106), #01386a
"mauve" : (174, 113, 129), #ae7181
"medium blue" : ( 44, 111, 187), #2c6fbb
"medium brown" : (127, 81, 18), #7f5112
"medium green" : ( 57, 173, 72), #39ad48
"medium grey" : (125, 127, 124), #7d7f7c
"medium pink" : (243, 97, 150), #f36196
"medium purple" : (158, 67, 162), #9e43a2
"melon" : (255, 120, 85), #ff7855
"merlot" : (115, 0, 57), #730039
"metallic blue" : ( 79, 115, 142), #4f738e
"mid blue" : ( 39, 106, 179), #276ab3
"mid green" : ( 80, 167, 71), #50a747
"midnight" : ( 3, 1, 45), #03012d
"midnight blue" : ( 2, 0, 53), #020035
"midnight purple" : ( 40, 1, 55), #280137
"military green" : (102, 124, 62), #667c3e
"milk chocolate" : (127, 78, 30), #7f4e1e
"mint" : (159, 254, 176), #9ffeb0
"mint green" : (143, 255, 159), #8fff9f
"minty green" : ( 11, 247, 125), #0bf77d
"mocha" : (157, 118, 81), #9d7651
"moss" : (118, 153, 88), #769958
"moss green" : (101, 139, 56), #658b38
"mossy green" : ( 99, 139, 39), #638b27
"mud" : (115, 92, 18), #735c12
"mud brown" : ( 96, 70, 15), #60460f
"mud green" : ( 96, 102, 2), #606602
"muddy brown" : (136, 104, 6), #886806
"muddy green" : (101, 116, 50), #657432
"muddy yellow" : (191, 172, 5), #bfac05
"mulberry" : (146, 10, 78), #920a4e
"murky green" : (108, 122, 14), #6c7a0e
"mushroom" : (186, 158, 136), #ba9e88
"mustard" : (206, 179, 1), #ceb301
"mustard brown" : (172, 126, 4), #ac7e04
"mustard green" : (168, 181, 4), #a8b504
"mustard yellow" : (210, 189, 10), #d2bd0a
"muted blue" : ( 59, 113, 159), #3b719f
"muted green" : ( 95, 160, 82), #5fa052
"muted pink" : (209, 118, 143), #d1768f
"muted purple" : (128, 91, 135), #805b87
"nasty green" : (112, 178, 63), #70b23f
"navy blue" : ( 0, 17, 70), #001146
"navy green" : ( 53, 83, 10), #35530a
"neon blue" : ( 4, 217, 255), #04d9ff
"neon green" : ( 12, 255, 12), #0cff0c
"neon pink" : (254, 1, 154), #fe019a
"neon purple" : (188, 19, 254), #bc13fe
"neon red" : (255, 7, 58), #ff073a
"neon yellow" : (207, 255, 4), #cfff04
"nice blue" : ( 16, 122, 176), #107ab0
"night blue" : ( 4, 3, 72), #040348
"ocean" : ( 1, 123, 146), #017b92
"ocean blue" : ( 3, 113, 156), #03719c
"ocean green" : ( 61, 153, 115), #3d9973
"ocher" : (191, 155, 12), #bf9b0c
"ochre" : (191, 144, 5), #bf9005
"ocre" : (198, 156, 4), #c69c04
"off blue" : ( 86, 132, 174), #5684ae
"off green" : (107, 163, 83), #6ba353
"off white" : (255, 255, 228), #ffffe4
"off yellow" : (241, 243, 63), #f1f33f
"old pink" : (199, 121, 134), #c77986
"old rose" : (200, 127, 137), #c87f89
"olive brown" : (100, 84, 3), #645403
"olive drab" : (111, 118, 50), #6f7632
"olive green" : (103, 122, 4), #677a04
"olive yellow" : (194, 183, 9), #c2b709
"orange brown" : (190, 100, 0), #be6400
"orange pink" : (255, 111, 82), #ff6f52
"orange red" : (253, 65, 30), #fd411e
"orange yellow" : (255, 173, 1), #ffad01
"orangeish" : (253, 141, 73), #fd8d49
"orangey brown" : (177, 96, 2), #b16002
"orangey red" : (250, 66, 36), #fa4224
"orangey yellow" : (253, 185, 21), #fdb915
"orangish" : (252, 130, 74), #fc824a
"orangish brown" : (178, 95, 3), #b25f03
"orangish red" : (244, 54, 5), #f43605
"pale" : (255, 249, 208), #fff9d0
"pale aqua" : (184, 255, 235), #b8ffeb
"pale blue" : (208, 254, 254), #d0fefe
"pale brown" : (177, 145, 110), #b1916e
"pale cyan" : (183, 255, 250), #b7fffa
"pale gold" : (253, 222, 108), #fdde6c
"pale green" : (199, 253, 181), #c7fdb5
"pale grey" : (253, 253, 254), #fdfdfe
"pale lavender" : (238, 207, 254), #eecffe
"pale light green" : (177, 252, 153), #b1fc99
"pale lilac" : (228, 203, 255), #e4cbff
"pale lime" : (190, 253, 115), #befd73
"pale lime green" : (177, 255, 101), #b1ff65
"pale magenta" : (215, 103, 173), #d767ad
"pale mauve" : (254, 208, 252), #fed0fc
"pale olive" : (185, 204, 129), #b9cc81
"pale olive green" : (177, 210, 123), #b1d27b
"pale orange" : (255, 167, 86), #ffa756
"pale peach" : (255, 229, 173), #ffe5ad
"pale pink" : (255, 207, 220), #ffcfdc
"pale purple" : (183, 144, 212), #b790d4
"pale red" : (217, 84, 77), #d9544d
"pale rose" : (253, 193, 197), #fdc1c5
"pale salmon" : (255, 177, 154), #ffb19a
"pale sky blue" : (189, 246, 254), #bdf6fe
"pale teal" : (130, 203, 178), #82cbb2
"pale turquoise" : (165, 251, 213), #a5fbd5
"pale violet" : (206, 174, 250), #ceaefa
"pale yellow" : (255, 255, 132), #ffff84
"parchment" : (254, 252, 175), #fefcaf
"pastel blue" : (162, 191, 254), #a2bffe
"pastel green" : (176, 255, 157), #b0ff9d
"pastel orange" : (255, 150, 79), #ff964f
"pastel pink" : (255, 186, 205), #ffbacd
"pastel purple" : (202, 160, 255), #caa0ff
"pastel red" : (219, 88, 86), #db5856
"pastel yellow" : (255, 254, 113), #fffe71
"pea" : (164, 191, 32), #a4bf20
"pea green" : (142, 171, 18), #8eab12
"pea soup" : (146, 153, 1), #929901
"pea soup green" : (148, 166, 23), #94a617
"peach" : (255, 176, 124), #ffb07c
"peachy pink" : (255, 154, 138), #ff9a8a
"peacock blue" : ( 1, 103, 149), #016795
"pear" : (203, 248, 95), #cbf85f
"periwinkle" : (142, 130, 254), #8e82fe
"periwinkle blue" : (143, 153, 251), #8f99fb
"perrywinkle" : (143, 140, 231), #8f8ce7
"petrol" : ( 0, 95, 106), #005f6a
"pig pink" : (231, 142, 165), #e78ea5
"pine" : ( 43, 93, 52), #2b5d34
"pine green" : ( 10, 72, 30), #0a481e
"pink purple" : (219, 75, 218), #db4bda
"pink red" : (245, 5, 79), #f5054f
"pink/purple" : (239, 29, 231), #ef1de7
"pinkish" : (212, 106, 126), #d46a7e
"pinkish brown" : (177, 114, 97), #b17261
"pinkish grey" : (200, 172, 169), #c8aca9
"pinkish orange" : (255, 114, 76), #ff724c
"pinkish purple" : (214, 72, 215), #d648d7
"pinkish red" : (241, 12, 69), #f10c45
"pinkish tan" : (217, 155, 130), #d99b82
"pinky" : (252, 134, 170), #fc86aa
"pinky purple" : (201, 76, 190), #c94cbe
"pinky red" : (252, 38, 71), #fc2647
"piss yellow" : (221, 214, 24), #ddd618
"pistachio" : (192, 250, 139), #c0fa8b
"plum purple" : ( 78, 5, 80), #4e0550
"poison green" : ( 64, 253, 20), #40fd14
"poo" : (143, 115, 3), #8f7303
"poo brown" : (136, 95, 1), #885f01
"poop" : (127, 94, 0), #7f5e00
"poop brown" : (122, 89, 1), #7a5901
"poop green" : (111, 124, 0), #6f7c00
"powder blue" : (177, 209, 252), #b1d1fc
"powder pink" : (255, 178, 208), #ffb2d0
"primary blue" : ( 8, 4, 249), #0804f9
"prussian blue" : ( 0, 69, 119), #004577
"puce" : (165, 126, 82), #a57e52
"puke" : (165, 165, 2), #a5a502
"puke brown" : (148, 119, 6), #947706
"puke green" : (154, 174, 7), #9aae07
"puke yellow" : (194, 190, 14), #c2be0e
"pumpkin" : (225, 119, 1), #e17701
"pumpkin orange" : (251, 125, 7), #fb7d07
"pure blue" : ( 2, 3, 226), #0203e2
"purple blue" : ( 99, 45, 233), #632de9
"purple brown" : (103, 58, 63), #673a3f
"purple grey" : (134, 111, 133), #866f85
"purple pink" : (224, 63, 216), #e03fd8
"purple red" : (153, 1, 71), #990147
"purple/blue" : ( 93, 33, 208), #5d21d0
"purple/pink" : (215, 37, 222), #d725de
"purpleish" : (152, 86, 141), #98568d
"purpleish blue" : ( 97, 64, 239), #6140ef
"purpleish pink" : (223, 78, 200), #df4ec8
"purpley" : (135, 86, 228), #8756e4
"purpley blue" : ( 95, 52, 231), #5f34e7
"purpley grey" : (148, 126, 148), #947e94
"purpley pink" : (200, 60, 185), #c83cb9
"purplish" : (148, 86, 140), #94568c
"purplish blue" : ( 96, 30, 249), #601ef9
"purplish brown" : (107, 66, 71), #6b4247
"purplish grey" : (122, 104, 127), #7a687f
"purplish pink" : (206, 93, 174), #ce5dae
"purplish red" : (176, 5, 75), #b0054b
"purply" : (152, 63, 178), #983fb2
"purply blue" : (102, 26, 238), #661aee
"purply pink" : (240, 117, 230), #f075e6
"putty" : (190, 174, 138), #beae8a
"racing green" : ( 1, 70, 0), #014600
"radioactive green" : ( 44, 250, 31), #2cfa1f
"raspberry" : (176, 1, 73), #b00149
"raw sienna" : (154, 98, 0), #9a6200
"raw umber" : (167, 94, 9), #a75e09
"really light blue" : (212, 255, 255), #d4ffff
"red brown" : (139, 46, 22), #8b2e16
"red orange" : (253, 60, 6), #fd3c06
"red pink" : (250, 42, 85), #fa2a55
"red purple" : (130, 7, 71), #820747
"red violet" : (158, 1, 104), #9e0168
"red wine" : (140, 0, 52), #8c0034
"reddish" : (196, 66, 64), #c44240
"reddish brown" : (127, 43, 10), #7f2b0a
"reddish grey" : (153, 117, 112), #997570
"reddish orange" : (248, 72, 28), #f8481c
"reddish pink" : (254, 44, 84), #fe2c54
"reddish purple" : (145, 9, 81), #910951
"reddy brown" : (110, 16, 5), #6e1005
"rich blue" : ( 2, 27, 249), #021bf9
"rich purple" : (114, 0, 88), #720058
"robin egg blue" : (138, 241, 254), #8af1fe
"robin's egg" : (109, 237, 253), #6dedfd
"robin's egg blue" : (152, 239, 249), #98eff9
"rosa" : (254, 134, 164), #fe86a4
"rose" : (207, 98, 117), #cf6275
"rose pink" : (247, 135, 154), #f7879a
"rose red" : (190, 1, 60), #be013c
"rosy pink" : (246, 104, 142), #f6688e
"rouge" : (171, 18, 57), #ab1239
"royal" : ( 12, 23, 147), #0c1793
"royal blue" : ( 5, 4, 170), #0504aa
"royal purple" : ( 75, 0, 110), #4b006e
"ruby" : (202, 1, 71), #ca0147
"russet" : (161, 57, 5), #a13905
"rust" : (168, 60, 9), #a83c09
"rust brown" : (139, 49, 3), #8b3103
"rust orange" : (196, 85, 8), #c45508
"rust red" : (170, 39, 4), #aa2704
"rusty orange" : (205, 89, 9), #cd5909
"rusty red" : (175, 47, 13), #af2f0d
"saffron" : (254, 178, 9), #feb209
"sage" : (135, 174, 115), #87ae73
"sage green" : (136, 179, 120), #88b378
"salmon pink" : (254, 123, 124), #fe7b7c
"sand" : (226, 202, 118), #e2ca76
"sand brown" : (203, 165, 96), #cba560
"sand yellow" : (252, 225, 102), #fce166
"sandstone" : (201, 174, 116), #c9ae74
"sandy" : (241, 218, 122), #f1da7a
"sandy brown" : (196, 166, 97), #c4a661
"sandy yellow" : (253, 238, 115), #fdee73
"sap green" : ( 92, 139, 21), #5c8b15
"sapphire" : ( 33, 56, 171), #2138ab
"scarlet" : (190, 1, 25), #be0119
"sea" : ( 60, 153, 146), #3c9992
"sea blue" : ( 4, 116, 149), #047495
"sea green" : ( 83, 252, 161), #53fca1
"seafoam" : (128, 249, 173), #80f9ad
"seafoam blue" : (120, 209, 182), #78d1b6
"seafoam green" : (122, 249, 171), #7af9ab
"seaweed" : ( 24, 209, 123), #18d17b
"seaweed green" : ( 53, 173, 107), #35ad6b
"sepia" : (152, 94, 43), #985e2b
"shamrock" : ( 1, 180, 76), #01b44c
"shamrock green" : ( 2, 193, 77), #02c14d
"shit" : (127, 95, 0), #7f5f00
"shit brown" : (123, 88, 4), #7b5804
"shit green" : (117, 128, 0), #758000
"shocking pink" : (254, 2, 162), #fe02a2
"sick green" : (157, 185, 44), #9db92c
"sickly green" : (148, 178, 28), #94b21c
"sickly yellow" : (208, 228, 41), #d0e429
"sky" : (130, 202, 252), #82cafc
"sky blue" : (117, 187, 253), #75bbfd
"slate" : ( 81, 101, 114), #516572
"slate blue" : ( 91, 124, 153), #5b7c99
"slate green" : (101, 141, 109), #658d6d
"slate grey" : ( 89, 101, 109), #59656d
"slime green" : (153, 204, 4), #99cc04
"snot" : (172, 187, 13), #acbb0d
"snot green" : (157, 193, 0), #9dc100
"soft blue" : (100, 136, 234), #6488ea
"soft green" : (111, 194, 118), #6fc276
"soft pink" : (253, 176, 192), #fdb0c0
"soft purple" : (166, 111, 181), #a66fb5
"spearmint" : ( 30, 248, 118), #1ef876
"spring green" : (169, 249, 113), #a9f971
"spruce" : ( 10, 95, 56), #0a5f38
"squash" : (242, 171, 21), #f2ab15
"steel" : (115, 133, 149), #738595
"steel blue" : ( 90, 125, 154), #5a7d9a
"steel grey" : (111, 130, 138), #6f828a
"stone" : (173, 165, 135), #ada587
"stormy blue" : ( 80, 123, 156), #507b9c
"straw" : (252, 246, 121), #fcf679
"strawberry" : (251, 41, 67), #fb2943
"strong blue" : ( 12, 6, 247), #0c06f7
"strong pink" : (255, 7, 137), #ff0789
"sun yellow" : (255, 223, 34), #ffdf22
"sunflower" : (255, 197, 18), #ffc512
"sunflower yellow" : (255, 218, 3), #ffda03
"sunny yellow" : (255, 249, 23), #fff917
"sunshine yellow" : (255, 253, 55), #fffd37
"swamp" : (105, 131, 57), #698339
"swamp green" : (116, 133, 0), #748500
"tan brown" : (171, 126, 76), #ab7e4c
"tan green" : (169, 190, 112), #a9be70
"tangerine" : (255, 148, 8), #ff9408
"taupe" : (185, 162, 129), #b9a281
"tea" : (101, 171, 124), #65ab7c
"tea green" : (189, 248, 163), #bdf8a3
"teal blue" : ( 1, 136, 159), #01889f
"teal green" : ( 37, 163, 111), #25a36f
"tealish" : ( 36, 188, 168), #24bca8
"tealish green" : ( 12, 220, 115), #0cdc73
"terra cotta" : (201, 100, 59), #c9643b
"terracota" : (203, 104, 67), #cb6843
"terracotta" : (202, 102, 65), #ca6641
"tiffany blue" : (123, 242, 218), #7bf2da
"tomato red" : (236, 45, 1), #ec2d01
"topaz" : ( 19, 187, 175), #13bbaf
"toupe" : (199, 172, 125), #c7ac7d
"toxic green" : ( 97, 222, 42), #61de2a
"tree green" : ( 42, 126, 25), #2a7e19
"true blue" : ( 1, 15, 204), #010fcc
"true green" : ( 8, 148, 4), #089404
"turquoise blue" : ( 6, 177, 196), #06b1c4
"turquoise green" : ( 4, 244, 137), #04f489
"turtle green" : (117, 184, 79), #75b84f
"twilight" : ( 78, 81, 139), #4e518b
"twilight blue" : ( 10, 67, 122), #0a437a
"ugly blue" : ( 49, 102, 138), #31668a
"ugly brown" : (125, 113, 3), #7d7103
"ugly green" : (122, 151, 3), #7a9703
"ugly pink" : (205, 117, 132), #cd7584
"ugly purple" : (164, 66, 160), #a442a0
"ugly yellow" : (208, 193, 1), #d0c101
"ultramarine" : ( 32, 0, 177), #2000b1
"ultramarine blue" : ( 24, 5, 219), #1805db
"umber" : (178, 100, 0), #b26400
"velvet" : (117, 8, 81), #750851
"vermillion" : (244, 50, 12), #f4320c
"very dark blue" : ( 0, 1, 51), #000133
"very dark brown" : ( 29, 2, 0), #1d0200
"very dark green" : ( 6, 46, 3), #062e03
"very dark purple" : ( 42, 1, 52), #2a0134
"very light blue" : (213, 255, 255), #d5ffff
"very light brown" : (211, 182, 131), #d3b683
"very light green" : (209, 255, 189), #d1ffbd
"very light pink" : (255, 244, 242), #fff4f2
"very light purple" : (246, 206, 252), #f6cefc
"very pale blue" : (214, 255, 254), #d6fffe
"very pale green" : (207, 253, 188), #cffdbc
"vibrant blue" : ( 3, 57, 248), #0339f8
"vibrant green" : ( 10, 221, 8), #0add08
"vibrant purple" : (173, 3, 222), #ad03de
"violet blue" : ( 81, 10, 201), #510ac9
"violet pink" : (251, 95, 252), #fb5ffc
"violet red" : (165, 0, 85), #a50055
"viridian" : ( 30, 145, 103), #1e9167
"vivid blue" : ( 21, 46, 255), #152eff
"vivid green" : ( 47, 239, 16), #2fef10
"vivid purple" : (153, 0, 250), #9900fa
"vomit" : (162, 164, 21), #a2a415
"vomit green" : (137, 162, 3), #89a203
"vomit yellow" : (199, 193, 12), #c7c10c
"warm blue" : ( 75, 87, 219), #4b57db
"warm brown" : (150, 78, 2), #964e02
"warm grey" : (151, 138, 132), #978a84
"warm pink" : (251, 85, 129), #fb5581
"warm purple" : (149, 46, 143), #952e8f
"washed out green" : (188, 245, 166), #bcf5a6
"water blue" : ( 14, 135, 204), #0e87cc
"watermelon" : (253, 70, 89), #fd4659
"weird green" : ( 58, 229, 127), #3ae57f
"windows blue" : ( 55, 120, 191), #3778bf
"wine" : (128, 1, 63), #80013f
"wine red" : (123, 3, 35), #7b0323
"wintergreen" : ( 32, 249, 134), #20f986
"wisteria" : (168, 125, 194), #a87dc2
"yellow brown" : (183, 148, 0), #b79400
"yellow green" : (192, 251, 45), #c0fb2d
"yellow ochre" : (203, 157, 6), #cb9d06
"yellow orange" : (252, 176, 1), #fcb001
"yellow tan" : (255, 227, 110), #ffe36e
"yellow/green" : (200, 253, 61), #c8fd3d
"yellowish" : (250, 238, 102), #faee66
"yellowish brown" : (155, 122, 1), #9b7a01
"yellowish green" : (176, 221, 22), #b0dd16
"yellowish orange" : (255, 171, 15), #ffab0f
"yellowish tan" : (252, 252, 129), #fcfc81
"yellowy brown" : (174, 139, 12), #ae8b0c
"yellowy green" : (191, 241, 40), #bff128
"almond" : (239, 222, 205), #efdecd
"antique brass" : (205, 149, 117), #cd9575
"apricot" : (253, 217, 181), #fdd9b5
"aquamarine" : (120, 219, 226), #78dbe2
"asparagus" : (135, 169, 107), #87a96b
"atomic tangerine" : (255, 164, 116), #ffa474
"banana mania" : (250, 231, 181), #fae7b5
"beaver" : (159, 129, 112), #9f8170
"bittersweet" : (253, 124, 110), #fd7c6e
"black" : ( 0, 0, 0), #000000
"blue" : ( 31, 117, 254), #1f75fe
"blue bell" : (162, 162, 208), #a2a2d0
"blue green" : ( 13, 152, 186), #0d98ba
"blue violet" : (115, 102, 189), #7366bd
"blush" : (222, 93, 131), #de5d83
"brick red" : (203, 65, 84), #cb4154
"brown" : (180, 103, 77), #b4674d
"burnt orange" : (255, 127, 73), #ff7f49
"burnt sienna" : (234, 126, 93), #ea7e5d
"cadet blue" : (176, 183, 198), #b0b7c6
"canary" : (255, 255, 153), #ffff99
"caribbean green" : ( 0, 204, 153), #00cc99
"carnation pink" : (255, 170, 204), #ffaacc
"cerise" : (221, 68, 146), #dd4492
"cerulean" : ( 29, 172, 214), #1dacd6
"chestnut" : (188, 93, 88), #bc5d58
"copper" : (221, 148, 117), #dd9475
"cornflower" : (154, 206, 235), #9aceeb
"cotton candy" : (255, 188, 217), #ffbcd9
"dandelion" : (253, 219, 109), #fddb6d
"denim" : ( 43, 108, 196), #2b6cc4
"desert sand" : (239, 205, 184), #efcdb8
"eggplant" : (110, 81, 96), #6e5160
"electric lime" : (206, 255, 29), #ceff1d
"fern" : (113, 188, 120), #71bc78
"forest green" : (109, 174, 129), #6dae81
"fuchsia" : (195, 100, 197), #c364c5
"fuzzy wuzzy" : (204, 102, 102), #cc6666
"gold" : (231, 198, 151), #e7c697
"goldenrod" : (252, 217, 117), #fcd975
"granny smith apple" : (168, 228, 160), #a8e4a0
"gray" : (149, 145, 140), #95918c
"green" : ( 28, 172, 120), #1cac78
"green yellow" : (240, 232, 145), #f0e891
"hot magenta" : (255, 29, 206), #ff1dce
"inchworm" : (178, 236, 93), #b2ec5d
"indigo" : ( 93, 118, 203), #5d76cb
"jazzberry jam" : (202, 55, 103), #ca3767
"jungle green" : ( 59, 176, 143), #3bb08f
"laser lemon" : (254, 254, 34), #fefe22
"lavender" : (252, 180, 213), #fcb4d5
"macaroni and cheese" : (255, 189, 136), #ffbd88
"magenta" : (246, 100, 175), #f664af
"mahogany" : (205, 74, 76), #cd4a4c
"manatee" : (151, 154, 170), #979aaa
"mango tango" : (255, 130, 67), #ff8243
"maroon" : (200, 56, 90), #c8385a
"mauvelous" : (239, 152, 170), #ef98aa
"melon" : (253, 188, 180), #fdbcb4
"midnight blue" : ( 26, 72, 118), #1a4876
"mountain meadow" : ( 48, 186, 143), #30ba8f
"navy blue" : ( 25, 116, 210), #1974d2
"neon carrot" : (255, 163, 67), #ffa343
"olive green" : (186, 184, 108), #bab86c
"orange" : (255, 117, 56), #ff7538
"orchid" : (230, 168, 215), #e6a8d7
"outer space" : ( 65, 74, 76), #414a4c
"outrageous orange" : (255, 110, 74), #ff6e4a
"pacific blue" : ( 28, 169, 201), #1ca9c9
"peach" : (255, 207, 171), #ffcfab
"periwinkle" : (197, 208, 230), #c5d0e6
"piggy pink" : (253, 221, 230), #fddde6
"pine green" : ( 21, 128, 120), #158078
"pink flamingo" : (252, 116, 253), #fc74fd
"pink sherbert" : (247, 143, 167), #f78fa7
"plum" : (142, 69, 133), #8e4585
"purple heart" : (116, 66, 200), #7442c8
"purple mountains' majesty" : (157, 129, 186), #9d81ba
"purple pizzazz" : (254, 78, 218), #fe4eda
"radical red" : (255, 73, 108), #ff496c
"raw sienna" : (214, 138, 89), #d68a59
"razzle dazzle rose" : (255, 72, 208), #ff48d0
"razzmatazz" : (227, 37, 107), #e3256b
"red" : (238, 32, 77), #ee204d
"red orange" : (255, 83, 73), #ff5349
"red violet" : (192, 68, 143), #c0448f
"robin's egg blue" : ( 31, 206, 203), #1fcecb
"royal purple" : (120, 81, 169), #7851a9
"salmon" : (255, 155, 170), #ff9baa
"scarlet" : (252, 40, 71), #fc2847
"screamin' green" : (118, 255, 122), #76ff7a
"sea green" : (147, 223, 184), #93dfb8
"sepia" : (165, 105, 79), #a5694f
"shadow" : (138, 121, 93), #8a795d
"shamrock" : ( 69, 206, 162), #45cea2
"shocking pink" : (251, 126, 253), #fb7efd
"silver" : (205, 197, 194), #cdc5c2
"sky blue" : (128, 218, 235), #80daeb
"spring green" : (236, 234, 190), #eceabe
"sunglow" : (255, 207, 72), #ffcf48
"sunset orange" : (253, 94, 83), #fd5e53
"tan" : (250, 167, 108), #faa76c
"tickle me pink" : (252, 137, 172), #fc89ac
"timberwolf" : (219, 215, 210), #dbd7d2
"tropical rain forest" : ( 23, 128, 109), #17806d
"tumbleweed" : (222, 170, 136), #deaa88
"turquoise blue" : (119, 221, 231), #77dde7
"unmellow yellow" : (255, 255, 102), #ffff66
"violet (purple)" : (146, 110, 174), #926eae
"violet red" : (247, 83, 148), #f75394
"vivid tangerine" : (255, 160, 137), #ffa089
"vivid violet" : (143, 80, 157), #8f509d
"white" : (255, 255, 255), #ffffff
"wild blue yonder" : (162, 173, 208), #a2add0
"wild strawberry" : (255, 67, 164), #ff43a4
"wild watermelon" : (252, 108, 133), #fc6c85
"wisteria" : (205, 164, 222), #cda4de
"yellow" : (252, 232, 131), #fce883
"yellow green" : (197, 227, 132), #c5e384
"yellow orange" : (255, 174, 66), #ffae42
"aqua" : ( 19, 234, 201), #13eac9
"cyan" : ( 0, 255, 255), #00ffff
"grey" : (146, 149, 145), #929591
"pink" : (255, 129, 192), #ff81c0
"purple" : (126, 30, 156), #7e1e9c
"white" : (255, 255, 255), #ffffff
"yellow" : (255, 255, 0), #ffff00
"magenta" : (255, 0, 255), #ff00ff
"red" : (255, 0, 0), #ff0000
"cyan" : ( 0, 255, 255), #00ffff
"green" : ( 0, 255, 0), #00ff00
"blue" : ( 0, 0, 255), #0000ff
"black" : ( 0, 0, 0), #000000
}
colorstring = {
"aliceblue" : "#f0f8ff", #(240, 248, 255)
"antiquewhite" : "#faebd7", #(250, 235, 215)
"antiquewhite1" : "#ffefdb", #(255, 239, 219)
"antiquewhite2" : "#eedfcc", #(238, 223, 204)
"antiquewhite3" : "#cdc0b0", #(205, 192, 176)
"antiquewhite4" : "#8b8378", #(139, 131, 120)
"aqua" : "#13eac9", #( 19, 234, 201)
"aquamarine" : "#04d8b2", #( 4, 216, 178)
"aquamarine1" : "#7fffd4", #(127, 255, 212)
"aquamarine2" : "#76eec6", #(118, 238, 198)
"aquamarine3" : "#66cdaa", #(102, 205, 170)
"aquamarine4" : "#458b74", #( 69, 139, 116)
"azure" : "#069af3", #( 6, 154, 243)
"azure1" : "#f0ffff", #(240, 255, 255)
"azure3" : "#c1cdcd", #(193, 205, 205)
"azure2" : "#e0eeee", #(224, 238, 238)
"azure4" : "#838b8b", #(131, 139, 139)
"beige" : "#e6daa6", #(230, 218, 166)
"bisque" : "#ffe4c4", #(255, 228, 196)
"bisque1" : "#ffe4c4", #(255, 228, 196)
"bisque2" : "#eed5b7", #(238, 213, 183)
"bisque3" : "#cdb79e", #(205, 183, 158)
"bisque4" : "#8b7d6b", #(139, 125, 107)
"black" : "#000000", #( 0, 0, 0)
"blanchedalmond" : "#ffebcd", #(255, 235, 205)
"blue" : "#0343df", #( 3, 67, 223)
"blue1" : "#0000ff", #( 0, 0, 255)
"blue2" : "#0000ee", #( 0, 0, 238)
"blue3" : "#0000cd", #( 0, 0, 205)
"blue4" : "#00008b", #( 0, 0, 139)
"blueviolet" : "#8a2be2", #(138, 43, 226)
"brown" : "#653700", #(101, 55, 0)
"brown1" : "#ff4040", #(255, 64, 64)
"brown2" : "#ee3b3b", #(238, 59, 59)
"brown3" : "#cd3333", #(205, 51, 51)
"brown4" : "#8b2323", #(139, 35, 35)
"burlywood" : "#deb887", #(222, 184, 135)
"burlywood1" : "#ffd39b", #(255, 211, 155)
"burlywood2" : "#eec591", #(238, 197, 145)
"burlywood3" : "#cdaa7d", #(205, 170, 125)
"burlywood4" : "#8b7355", #(139, 115, 85)
"cadetblue" : "#5f9ea0", #( 95, 158, 160)
"cadetblue1" : "#98f5ff", #(152, 245, 255)
"cadetblue2" : "#8ee5ee", #(142, 229, 238)
"cadetblue3" : "#7ac5cd", #(122, 197, 205)
"cadetblue4" : "#53868b", #( 83, 134, 139)
"chartreuse" : "#c1f80a", #(193, 248, 10)
"chartreuse1" : "#7fff00", #(127, 255, 0)
"chartreuse2" : "#76ee00", #(118, 238, 0)
"chartreuse3" : "#66cd00", #(102, 205, 0)
"chartreuse4" : "#458b00", #( 69, 139, 0)
"chocolate" : "#3d1c02", #( 61, 28, 2)
"chocolate1" : "#ff7f24", #(255, 127, 36)
"chocolate2" : "#ee7621", #(238, 118, 33)
"chocolate3" : "#cd661d", #(205, 102, 29)
"chocolate4" : "#8b4513", #(139, 69, 19)
"coral" : "#fc5a50", #(252, 90, 80)
"coral1" : "#ff7256", #(255, 114, 86)
"coral2" : "#ee6a50", #(238, 106, 80)
"coral3" : "#cd5b45", #(205, 91, 69)
"coral4" : "#8b3e2f", #(139, 62, 47)
"cornflowerblue" : "#6495ed", #(100, 149, 237)
"cornsilk" : "#fff8dc", #(255, 248, 220)
"cornsilk1" : "#fff8dc", #(255, 248, 220)
"cornsilk2" : "#eee8cd", #(238, 232, 205)
"cornsilk3" : "#cdc8b1", #(205, 200, 177)
"cornsilk4" : "#8b8878", #(139, 136, 120)
"crimson" : "#8c000f", #(140, 0, 15)
"cyan" : "#00ffff", #( 0, 255, 255)
"cyan1" : "#00ffff", #( 0, 255, 255)
"cyan2" : "#00eeee", #( 0, 238, 238)
"cyan3" : "#00cdcd", #( 0, 205, 205)
"cyan4" : "#008b8b", #( 0, 139, 139)
"darkblue" : "#030764", #( 3, 7, 100)
"darkcyan" : "#008b8b", #( 0, 139, 139)
"darkgoldenrod" : "#b8860b", #(184, 134, 11)
"darkgoldenrod1" : "#ffb90f", #(255, 185, 15)
"darkgoldenrod2" : "#eead0e", #(238, 173, 14)
"darkgoldenrod3" : "#cd950c", #(205, 149, 12)
"darkgoldenrod4" : "#8b6508", #(139, 101, 8)
"darkgray" : "#a9a9a9", #(169, 169, 169)
"darkgreen" : "#054907", #( 5, 73, 7)
"darkgrey" : "#a9a9a9", #(169, 169, 169)
"darkkhaki" : "#bdb76b", #(189, 183, 107)
"darkmagenta" : "#8b008b", #(139, 0, 139)
"darkolivegreen" : "#556b2f", #( 85, 107, 47)
"darkolivegreen1" : "#caff70", #(202, 255, 112)
"darkolivegreen2" : "#bcee68", #(188, 238, 104)
"darkolivegreen3" : "#a2cd5a", #(162, 205, 90)
"darkolivegreen4" : "#6e8b3d", #(110, 139, 61)
"darkorange" : "#ff8c00", #(255, 140, 0)
"darkorange1" : "#ff7f00", #(255, 127, 0)
"darkorange2" : "#ee7600", #(238, 118, 0)
"darkorange3" : "#cd6600", #(205, 102, 0)
"darkorange4" : "#8b4500", #(139, 69, 0)
"darkorchid" : "#9932cc", #(153, 50, 204)
"darkorchid1" : "#bf3eff", #(191, 62, 255)
"darkorchid2" : "#b23aee", #(178, 58, 238)
"darkorchid3" : "#9a32cd", #(154, 50, 205)
"darkorchid4" : "#68228b", #(104, 34, 139)
"darkred" : "#8b0000", #(139, 0, 0)
"darksalmon" : "#e9967a", #(233, 150, 122)
"darkseagreen" : "#8fbc8f", #(143, 188, 143)
"darkseagreen1" : "#c1ffc1", #(193, 255, 193)
"darkseagreen2" : "#b4eeb4", #(180, 238, 180)
"darkseagreen3" : "#9bcd9b", #(155, 205, 155)
"darkseagreen4" : "#698b69", #(105, 139, 105)
"darkslateblue" : "#483d8b", #( 72, 61, 139)
"darkslategray" : "#2f4f4f", #( 47, 79, 79)
"darkslategray1" : "#97ffff", #(151, 255, 255)
"darkslategray2" : "#8deeee", #(141, 238, 238)
"darkslategray3" : "#79cdcd", #(121, 205, 205)
"darkslategray4" : "#528b8b", #( 82, 139, 139)
"darkslategrey" : "#2f4f4f", #( 47, 79, 79)
"darkturquoise" : "#00ced1", #( 0, 206, 209)
"darkviolet" : "#9400d3", #(148, 0, 211)
"deeppink" : "#ff1493", #(255, 20, 147)
"deeppink1" : "#ff1493", #(255, 20, 147)
"deeppink2" : "#ee1289", #(238, 18, 137)
"deeppink3" : "#cd1076", #(205, 16, 118)
"deeppink4" : "#8b0a50", #(139, 10, 80)
"deepskyblue" : "#00bfff", #( 0, 191, 255)
"deepskyblue1" : "#00bfff", #( 0, 191, 255)
"deepskyblue2" : "#00b2ee", #( 0, 178, 238)
"deepskyblue3" : "#009acd", #( 0, 154, 205)
"deepskyblue4" : "#00688b", #( 0, 104, 139)
"dimgray" : "#696969", #(105, 105, 105)
"dimgrey" : "#696969", #(105, 105, 105)
"dodgerblue" : "#1e90ff", #( 30, 144, 255)
"dodgerblue1" : "#1e90ff", #( 30, 144, 255)
"dodgerblue2" : "#1c86ee", #( 28, 134, 238)
"dodgerblue3" : "#1874cd", #( 24, 116, 205)
"dodgerblue4" : "#104e8b", #( 16, 78, 139)
"firebrick" : "#b22222", #(178, 34, 34)
"firebrick1" : "#ff3030", #(255, 48, 48)
"firebrick2" : "#ee2c2c", #(238, 44, 44)
"firebrick3" : "#cd2626", #(205, 38, 38)
"firebrick4" : "#8b1a1a", #(139, 26, 26)
"floralwhite" : "#fffaf0", #(255, 250, 240)
"forestgreen" : "#228b22", #( 34, 139, 34)
"fuchsia" : "#ed0dd9", #(237, 13, 217)
"gainsboro" : "#dcdcdc", #(220, 220, 220)
"ghostwhite" : "#f8f8ff", #(248, 248, 255)
"gold" : "#dbb40c", #(219, 180, 12)
"gold1" : "#ffd700", #(255, 215, 0)
"gold2" : "#eec900", #(238, 201, 0)
"gold3" : "#cdad00", #(205, 173, 0)
"gold4" : "#8b7500", #(139, 117, 0)
"goldenrod" : "#fac205", #(250, 194, 5)
"goldenrod1" : "#ffc125", #(255, 193, 37)
"goldenrod2" : "#eeb422", #(238, 180, 34)
"goldenrod3" : "#cd9b1d", #(205, 155, 29)
"goldenrod4" : "#8b6914", #(139, 105, 20)
"gray" : "#bebebe", #(190, 190, 190)
"gray0" : "#000000", #( 0, 0, 0)
"gray1" : "#030303", #( 3, 3, 3)
"gray2" : "#050505", #( 5, 5, 5)
"gray3" : "#080808", #( 8, 8, 8)
"gray4" : "#0a0a0a", #( 10, 10, 10)
"gray5" : "#0d0d0d", #( 13, 13, 13)
"gray6" : "#0f0f0f", #( 15, 15, 15)
"gray7" : "#121212", #( 18, 18, 18)
"gray8" : "#141414", #( 20, 20, 20)
"gray9" : "#171717", #( 23, 23, 23)
"gray10" : "#1a1a1a", #( 26, 26, 26)
"gray11" : "#1c1c1c", #( 28, 28, 28)
"gray12" : "#1f1f1f", #( 31, 31, 31)
"gray13" : "#212121", #( 33, 33, 33)
"gray14" : "#242424", #( 36, 36, 36)
"gray15" : "#262626", #( 38, 38, 38)
"gray16" : "#292929", #( 41, 41, 41)
"gray17" : "#2b2b2b", #( 43, 43, 43)
"gray18" : "#2e2e2e", #( 46, 46, 46)
"gray19" : "#303030", #( 48, 48, 48)
"gray20" : "#333333", #( 51, 51, 51)
"gray21" : "#363636", #( 54, 54, 54)
"gray22" : "#383838", #( 56, 56, 56)
"gray23" : "#3b3b3b", #( 59, 59, 59)
"gray24" : "#3d3d3d", #( 61, 61, 61)
"gray25" : "#404040", #( 64, 64, 64)
"gray26" : "#424242", #( 66, 66, 66)
"gray27" : "#454545", #( 69, 69, 69)
"gray28" : "#474747", #( 71, 71, 71)
"gray29" : "#4a4a4a", #( 74, 74, 74)
"gray30" : "#4d4d4d", #( 77, 77, 77)
"gray31" : "#4f4f4f", #( 79, 79, 79)
"gray32" : "#525252", #( 82, 82, 82)
"gray33" : "#545454", #( 84, 84, 84)
"gray34" : "#575757", #( 87, 87, 87)
"gray35" : "#595959", #( 89, 89, 89)
"gray36" : "#5c5c5c", #( 92, 92, 92)
"gray37" : "#5e5e5e", #( 94, 94, 94)
"gray38" : "#616161", #( 97, 97, 97)
"gray39" : "#636363", #( 99, 99, 99)
"gray40" : "#666666", #(102, 102, 102)
"gray41" : "#696969", #(105, 105, 105)
"gray42" : "#6b6b6b", #(107, 107, 107)
"gray43" : "#6e6e6e", #(110, 110, 110)
"gray44" : "#707070", #(112, 112, 112)
"gray45" : "#737373", #(115, 115, 115)
"gray46" : "#757575", #(117, 117, 117)
"gray47" : "#787878", #(120, 120, 120)
"gray48" : "#7a7a7a", #(122, 122, 122)
"gray49" : "#7d7d7d", #(125, 125, 125)
"gray50" : "#7f7f7f", #(127, 127, 127)
"gray51" : "#828282", #(130, 130, 130)
"gray52" : "#858585", #(133, 133, 133)
"gray53" : "#878787", #(135, 135, 135)
"gray54" : "#8a8a8a", #(138, 138, 138)
"gray55" : "#8c8c8c", #(140, 140, 140)
"gray56" : "#8f8f8f", #(143, 143, 143)
"gray57" : "#919191", #(145, 145, 145)
"gray58" : "#949494", #(148, 148, 148)
"gray59" : "#969696", #(150, 150, 150)
"gray60" : "#999999", #(153, 153, 153)
"gray61" : "#9c9c9c", #(156, 156, 156)
"gray62" : "#9e9e9e", #(158, 158, 158)
"gray63" : "#a1a1a1", #(161, 161, 161)
"gray64" : "#a3a3a3", #(163, 163, 163)
"gray65" : "#a6a6a6", #(166, 166, 166)
"gray66" : "#a8a8a8", #(168, 168, 168)
"gray67" : "#ababab", #(171, 171, 171)
"gray68" : "#adadad", #(173, 173, 173)
"gray69" : "#b0b0b0", #(176, 176, 176)
"gray70" : "#b3b3b3", #(179, 179, 179)
"gray71" : "#b5b5b5", #(181, 181, 181)
"gray72" : "#b8b8b8", #(184, 184, 184)
"gray73" : "#bababa", #(186, 186, 186)
"gray74" : "#bdbdbd", #(189, 189, 189)
"gray75" : "#bfbfbf", #(191, 191, 191)
"gray76" : "#c2c2c2", #(194, 194, 194)
"gray77" : "#c4c4c4", #(196, 196, 196)
"gray78" : "#c7c7c7", #(199, 199, 199)
"gray79" : "#c9c9c9", #(201, 201, 201)
"gray80" : "#cccccc", #(204, 204, 204)
"gray81" : "#cfcfcf", #(207, 207, 207)
"gray82" : "#d1d1d1", #(209, 209, 209)
"gray83" : "#d4d4d4", #(212, 212, 212)
"gray84" : "#d6d6d6", #(214, 214, 214)
"gray85" : "#d9d9d9", #(217, 217, 217)
"gray86" : "#dbdbdb", #(219, 219, 219)
"gray87" : "#dedede", #(222, 222, 222)
"gray88" : "#e0e0e0", #(224, 224, 224)
"gray89" : "#e3e3e3", #(227, 227, 227)
"gray90" : "#e5e5e5", #(229, 229, 229)
"gray91" : "#e8e8e8", #(232, 232, 232)
"gray92" : "#ebebeb", #(235, 235, 235)
"gray93" : "#ededed", #(237, 237, 237)
"gray94" : "#f0f0f0", #(240, 240, 240)
"gray95" : "#f2f2f2", #(242, 242, 242)
"gray96" : "#f5f5f5", #(245, 245, 245)
"gray97" : "#f7f7f7", #(247, 247, 247)
"gray98" : "#fafafa", #(250, 250, 250)
"gray99" : "#fcfcfc", #(252, 252, 252)
"gray100" : "#ffffff", #(255, 255, 255)
"green" : "#15b01a", #( 21, 176, 26)
"green1" : "#00ff00", #( 0, 255, 0)
"green2" : "#00ee00", #( 0, 238, 0)
"green3" : "#00cd00", #( 0, 205, 0)
"green4" : "#008b00", #( 0, 139, 0)
"greenyellow" : "#adff2f", #(173, 255, 47)
"grey" : "#929591", #(146, 149, 145)
"grey0" : "#000000", #( 0, 0, 0)
"grey1" : "#030303", #( 3, 3, 3)
"grey2" : "#050505", #( 5, 5, 5)
"grey3" : "#080808", #( 8, 8, 8)
"grey4" : "#0a0a0a", #( 10, 10, 10)
"grey5" : "#0d0d0d", #( 13, 13, 13)
"grey6" : "#0f0f0f", #( 15, 15, 15)
"grey7" : "#121212", #( 18, 18, 18)
"grey8" : "#141414", #( 20, 20, 20)
"grey9" : "#171717", #( 23, 23, 23)
"grey10" : "#1a1a1a", #( 26, 26, 26)
"grey11" : "#1c1c1c", #( 28, 28, 28)
"grey12" : "#1f1f1f", #( 31, 31, 31)
"grey13" : "#212121", #( 33, 33, 33)
"grey14" : "#242424", #( 36, 36, 36)
"grey15" : "#262626", #( 38, 38, 38)
"grey16" : "#292929", #( 41, 41, 41)
"grey17" : "#2b2b2b", #( 43, 43, 43)
"grey18" : "#2e2e2e", #( 46, 46, 46)
"grey19" : "#303030", #( 48, 48, 48)
"grey20" : "#333333", #( 51, 51, 51)
"grey21" : "#363636", #( 54, 54, 54)
"grey22" : "#383838", #( 56, 56, 56)
"grey23" : "#3b3b3b", #( 59, 59, 59)
"grey24" : "#3d3d3d", #( 61, 61, 61)
"grey25" : "#404040", #( 64, 64, 64)
"grey26" : "#424242", #( 66, 66, 66)
"grey27" : "#454545", #( 69, 69, 69)
"grey28" : "#474747", #( 71, 71, 71)
"grey29" : "#4a4a4a", #( 74, 74, 74)
"grey30" : "#4d4d4d", #( 77, 77, 77)
"grey31" : "#4f4f4f", #( 79, 79, 79)
"grey32" : "#525252", #( 82, 82, 82)
"grey33" : "#545454", #( 84, 84, 84)
"grey34" : "#575757", #( 87, 87, 87)
"grey35" : "#595959", #( 89, 89, 89)
"grey36" : "#5c5c5c", #( 92, 92, 92)
"grey37" : "#5e5e5e", #( 94, 94, 94)
"grey38" : "#616161", #( 97, 97, 97)
"grey39" : "#636363", #( 99, 99, 99)
"grey40" : "#666666", #(102, 102, 102)
"grey41" : "#696969", #(105, 105, 105)
"grey42" : "#6b6b6b", #(107, 107, 107)
"grey43" : "#6e6e6e", #(110, 110, 110)
"grey44" : "#707070", #(112, 112, 112)
"grey45" : "#737373", #(115, 115, 115)
"grey46" : "#757575", #(117, 117, 117)
"grey47" : "#787878", #(120, 120, 120)
"grey48" : "#7a7a7a", #(122, 122, 122)
"grey49" : "#7d7d7d", #(125, 125, 125)
"grey50" : "#7f7f7f", #(127, 127, 127)
"grey51" : "#828282", #(130, 130, 130)
"grey52" : "#858585", #(133, 133, 133)
"grey53" : "#878787", #(135, 135, 135)
"grey54" : "#8a8a8a", #(138, 138, 138)
"grey55" : "#8c8c8c", #(140, 140, 140)
"grey56" : "#8f8f8f", #(143, 143, 143)
"grey57" : "#919191", #(145, 145, 145)
"grey58" : "#949494", #(148, 148, 148)
"grey59" : "#969696", #(150, 150, 150)
"grey60" : "#999999", #(153, 153, 153)
"grey61" : "#9c9c9c", #(156, 156, 156)
"grey62" : "#9e9e9e", #(158, 158, 158)
"grey63" : "#a1a1a1", #(161, 161, 161)
"grey64" : "#a3a3a3", #(163, 163, 163)
"grey65" : "#a6a6a6", #(166, 166, 166)
"grey66" : "#a8a8a8", #(168, 168, 168)
"grey67" : "#ababab", #(171, 171, 171)
"grey68" : "#adadad", #(173, 173, 173)
"grey69" : "#b0b0b0", #(176, 176, 176)
"grey70" : "#b3b3b3", #(179, 179, 179)
"grey71" : "#b5b5b5", #(181, 181, 181)
"grey72" : "#b8b8b8", #(184, 184, 184)
"grey73" : "#bababa", #(186, 186, 186)
"grey74" : "#bdbdbd", #(189, 189, 189)
"grey75" : "#bfbfbf", #(191, 191, 191)
"grey76" : "#c2c2c2", #(194, 194, 194)
"grey77" : "#c4c4c4", #(196, 196, 196)
"grey78" : "#c7c7c7", #(199, 199, 199)
"grey79" : "#c9c9c9", #(201, 201, 201)
"grey80" : "#cccccc", #(204, 204, 204)
"grey81" : "#cfcfcf", #(207, 207, 207)
"grey82" : "#d1d1d1", #(209, 209, 209)
"grey83" : "#d4d4d4", #(212, 212, 212)
"grey84" : "#d6d6d6", #(214, 214, 214)
"grey85" : "#d9d9d9", #(217, 217, 217)
"grey86" : "#dbdbdb", #(219, 219, 219)
"grey87" : "#dedede", #(222, 222, 222)
"grey88" : "#e0e0e0", #(224, 224, 224)
"grey89" : "#e3e3e3", #(227, 227, 227)
"grey90" : "#e5e5e5", #(229, 229, 229)
"grey91" : "#e8e8e8", #(232, 232, 232)
"grey92" : "#ebebeb", #(235, 235, 235)
"grey93" : "#ededed", #(237, 237, 237)
"grey94" : "#f0f0f0", #(240, 240, 240)
"grey95" : "#f2f2f2", #(242, 242, 242)
"grey96" : "#f5f5f5", #(245, 245, 245)
"grey97" : "#f7f7f7", #(247, 247, 247)
"grey98" : "#fafafa", #(250, 250, 250)
"grey99" : "#fcfcfc", #(252, 252, 252)
"grey100" : "#ffffff", #(255, 255, 255)
"honeydew" : "#f0fff0", #(240, 255, 240)
"honeydew1" : "#f0fff0", #(240, 255, 240)
"honeydew2" : "#e0eee0", #(224, 238, 224)
"honeydew3" : "#c1cdc1", #(193, 205, 193)
"honeydew4" : "#838b83", #(131, 139, 131)
"hotpink" : "#ff69b4", #(255, 105, 180)
"hotpink1" : "#ff6eb4", #(255, 110, 180)
"hotpink2" : "#ee6aa7", #(238, 106, 167)
"hotpink3" : "#cd6090", #(205, 96, 144)
"hotpink4" : "#8b3a62", #(139, 58, 98)
"indianred" : "#cd5c5c", #(205, 92, 92)
"indianred1" : "#ff6a6a", #(255, 106, 106)
"indianred2" : "#ee6363", #(238, 99, 99)
"indianred3" : "#cd5555", #(205, 85, 85)
"indianred4" : "#8b3a3a", #(139, 58, 58)
"indigo" : "#380282", #( 56, 2, 130)
"ivory" : "#ffffcb", #(255, 255, 203)
"ivory1" : "#fffff0", #(255, 255, 240)
"ivory2" : "#eeeee0", #(238, 238, 224)
"ivory3" : "#cdcdc1", #(205, 205, 193)
"ivory4" : "#8b8b83", #(139, 139, 131)
"khaki" : "#aaa662", #(170, 166, 98)
"khaki1" : "#fff68f", #(255, 246, 143)
"khaki2" : "#eee685", #(238, 230, 133)
"khaki3" : "#cdc673", #(205, 198, 115)
"khaki4" : "#8b864e", #(139, 134, 78)
"lavender" : "#c79fef", #(199, 159, 239)
"lavenderblush" : "#fff0f5", #(255, 240, 245)
"lavenderblush1" : "#fff0f5", #(255, 240, 245)
"lavenderblush2" : "#eee0e5", #(238, 224, 229)
"lavenderblush3" : "#cdc1c5", #(205, 193, 197)
"lavenderblush4" : "#8b8386", #(139, 131, 134)
"lawngreen" : "#7cfc00", #(124, 252, 0)
"lemonchiffon" : "#fffacd", #(255, 250, 205)
"lemonchiffon1" : "#fffacd", #(255, 250, 205)
"lemonchiffon2" : "#eee9bf", #(238, 233, 191)
"lemonchiffon3" : "#cdc9a5", #(205, 201, 165)
"lemonchiffon4" : "#8b8970", #(139, 137, 112)
"lightblue" : "#7bc8f6", #(123, 200, 246)
"lightblue1" : "#bfefff", #(191, 239, 255)
"lightblue2" : "#b2dfee", #(178, 223, 238)
"lightblue3" : "#9ac0cd", #(154, 192, 205)
"lightblue4" : "#68838b", #(104, 131, 139)
"lightcoral" : "#f08080", #(240, 128, 128)
"lightcyan" : "#e0ffff", #(224, 255, 255)
"lightcyan1" : "#e0ffff", #(224, 255, 255)
"lightcyan2" : "#d1eeee", #(209, 238, 238)
"lightcyan3" : "#b4cdcd", #(180, 205, 205)
"lightcyan4" : "#7a8b8b", #(122, 139, 139)
"lightgoldenrod" : "#eedd82", #(238, 221, 130)
"lightgoldenrod1" : "#ffec8b", #(255, 236, 139)
"lightgoldenrod2" : "#eedc82", #(238, 220, 130)
"lightgoldenrod3" : "#cdbe70", #(205, 190, 112)
"lightgoldenrod4" : "#8b814c", #(139, 129, 76)
"lightgoldenrodyellow" : "#fafad2", #(250, 250, 210)
"lightgray" : "#d3d3d3", #(211, 211, 211)
"lightgreen" : "#76ff7b", #(118, 255, 123)
"lightgrey" : "#d3d3d3", #(211, 211, 211)
"lightpink" : "#ffb6c1", #(255, 182, 193)
"lightpink1" : "#ffaeb9", #(255, 174, 185)
"lightpink2" : "#eea2ad", #(238, 162, 173)
"lightpink3" : "#cd8c95", #(205, 140, 149)
"lightpink4" : "#8b5f65", #(139, 95, 101)
"lightsalmon" : "#ffa07a", #(255, 160, 122)
"lightsalmon1" : "#ffa07a", #(255, 160, 122)
"lightsalmon2" : "#ee9572", #(238, 149, 114)
"lightsalmon3" : "#cd8162", #(205, 129, 98)
"lightsalmon4" : "#8b5742", #(139, 87, 66)
"lightseagreen" : "#20b2aa", #( 32, 178, 170)
"lightskyblue" : "#87cefa", #(135, 206, 250)
"lightskyblue1" : "#b0e2ff", #(176, 226, 255)
"lightskyblue2" : "#a4d3ee", #(164, 211, 238)
"lightskyblue3" : "#8db6cd", #(141, 182, 205)
"lightskyblue4" : "#607b8b", #( 96, 123, 139)
"lightslateblue" : "#8470ff", #(132, 112, 255)
"lightslategray" : "#778899", #(119, 136, 153)
"lightslategrey" : "#778899", #(119, 136, 153)
"lightsteelblue" : "#b0c4de", #(176, 196, 222)
"lightsteelblue1" : "#cae1ff", #(202, 225, 255)
"lightsteelblue2" : "#bcd2ee", #(188, 210, 238)
"lightsteelblue3" : "#a2b5cd", #(162, 181, 205)
"lightsteelblue4" : "#6e7b8b", #(110, 123, 139)
"lightyellow" : "#ffffe0", #(255, 255, 224)
"lightyellow1" : "#ffffe0", #(255, 255, 224)
"lightyellow2" : "#eeeed1", #(238, 238, 209)
"lightyellow3" : "#cdcdb4", #(205, 205, 180)
"lightyellow4" : "#8b8b7a", #(139, 139, 122)
"linen" : "#faf0e6", #(250, 240, 230)
"lime" : "#aaff32", #(170, 255, 50)
"limegreen" : "#32cd32", #( 50, 205, 50)
"magenta" : "#c20078", #(194, 0, 120)
"magenta1" : "#ff00ff", #(255, 0, 255)
"magenta2" : "#ee00ee", #(238, 0, 238)
"magenta3" : "#cd00cd", #(205, 0, 205)
"magenta4" : "#8b008b", #(139, 0, 139)
"maroon" : "#650021", #(101, 0, 33)
"maroon1" : "#ff34b3", #(255, 52, 179)
"maroon2" : "#ee30a7", #(238, 48, 167)
"maroon3" : "#cd2990", #(205, 41, 144)
"maroon4" : "#8b1c62", #(139, 28, 98)
"mediumaquamarine" : "#66cdaa", #(102, 205, 170)
"mediumblue" : "#0000cd", #( 0, 0, 205)
"mediumorchid" : "#ba55d3", #(186, 85, 211)
"mediumorchid1" : "#e066ff", #(224, 102, 255)
"mediumorchid2" : "#d15fee", #(209, 95, 238)
"mediumorchid3" : "#b452cd", #(180, 82, 205)
"mediumorchid4" : "#7a378b", #(122, 55, 139)
"mediumpurple" : "#9370db", #(147, 112, 219)
"mediumpurple1" : "#ab82ff", #(171, 130, 255)
"mediumpurple2" : "#9f79ee", #(159, 121, 238)
"mediumpurple3" : "#8968cd", #(137, 104, 205)
"mediumpurple4" : "#5d478b", #( 93, 71, 139)
"mediumseagreen" : "#3cb371", #( 60, 179, 113)
"mediumslateblue" : "#7b68ee", #(123, 104, 238)
"mediumspringgreen" : "#00fa9a", #( 0, 250, 154)
"mediumturquoise" : "#48d1cc", #( 72, 209, 204)
"mediumvioletred" : "#c71585", #(199, 21, 133)
"midnightblue" : "#191970", #( 25, 25, 112)
"mintcream" : "#f5fffa", #(245, 255, 250)
"mistyrose" : "#ffe4e1", #(255, 228, 225)
"mistyrose1" : "#ffe4e1", #(255, 228, 225)
"mistyrose2" : "#eed5d2", #(238, 213, 210)
"mistyrose3" : "#cdb7b5", #(205, 183, 181)
"mistyrose4" : "#8b7d7b", #(139, 125, 123)
"moccasin" : "#ffe4b5", #(255, 228, 181)
"navajowhite" : "#ffdead", #(255, 222, 173)
"navajowhite1" : "#ffdead", #(255, 222, 173)
"navajowhite2" : "#eecfa1", #(238, 207, 161)
"navajowhite3" : "#cdb38b", #(205, 179, 139)
"navajowhite4" : "#8b795e", #(139, 121, 94)
"navy" : "#01153e", #( 1, 21, 62)
"navyblue" : "#000080", #( 0, 0, 128)
"oldlace" : "#fdf5e6", #(253, 245, 230)
"olive" : "#6e750e", #(110, 117, 14)
"olivedrab" : "#6b8e23", #(107, 142, 35)
"olivedrab1" : "#c0ff3e", #(192, 255, 62)
"olivedrab2" : "#b3ee3a", #(179, 238, 58)
"olivedrab3" : "#9acd32", #(154, 205, 50)
"olivedrab4" : "#698b22", #(105, 139, 34)
"orange" : "#f97306", #(249, 115, 6)
"orange1" : "#ffa500", #(255, 165, 0)
"orange2" : "#ee9a00", #(238, 154, 0)
"orange3" : "#cd8500", #(205, 133, 0)
"orange4" : "#8b5a00", #(139, 90, 0)
"orangered" : "#fe420f", #(254, 66, 15)
"orangered1" : "#ff4500", #(255, 69, 0)
"orangered2" : "#ee4000", #(238, 64, 0)
"orangered3" : "#cd3700", #(205, 55, 0)
"orangered4" : "#8b2500", #(139, 37, 0)
"orchid" : "#c875c4", #(200, 117, 196)
"orchid1" : "#ff83fa", #(255, 131, 250)
"orchid2" : "#ee7ae9", #(238, 122, 233)
"orchid3" : "#cd69c9", #(205, 105, 201)
"orchid4" : "#8b4789", #(139, 71, 137)
"palegreen" : "#98fb98", #(152, 251, 152)
"palegreen1" : "#9aff9a", #(154, 255, 154)
"palegreen2" : "#90ee90", #(144, 238, 144)
"palegreen3" : "#7ccd7c", #(124, 205, 124)
"palegreen4" : "#548b54", #( 84, 139, 84)
"palegoldenrod" : "#eee8aa", #(238, 232, 170)
"paleturquoise" : "#afeeee", #(175, 238, 238)
"paleturquoise1" : "#bbffff", #(187, 255, 255)
"paleturquoise2" : "#aeeeee", #(174, 238, 238)
"paleturquoise3" : "#96cdcd", #(150, 205, 205)
"paleturquoise4" : "#668b8b", #(102, 139, 139)
"palevioletred" : "#db7093", #(219, 112, 147)
"palevioletred1" : "#ff82ab", #(255, 130, 171)
"palevioletred2" : "#ee799f", #(238, 121, 159)
"palevioletred3" : "#cd6889", #(205, 104, 137)
"palevioletred4" : "#8b475d", #(139, 71, 93)
"papayawhip" : "#ffefd5", #(255, 239, 213)
"peachpuff" : "#ffdab9", #(255, 218, 185)
"peachpuff1" : "#ffdab9", #(255, 218, 185)
"peachpuff2" : "#eecbad", #(238, 203, 173)
"peachpuff3" : "#cdaf95", #(205, 175, 149)
"peachpuff4" : "#8b7765", #(139, 119, 101)
"peru" : "#cd853f", #(205, 133, 63)
"pink" : "#ff81c0", #(255, 129, 192)
"pink1" : "#ffb5c5", #(255, 181, 197)
"pink2" : "#eea9b8", #(238, 169, 184)
"pink3" : "#cd919e", #(205, 145, 158)
"pink4" : "#8b636c", #(139, 99, 108)
"plum" : "#580f41", #( 88, 15, 65)
"plum1" : "#ffbbff", #(255, 187, 255)
"plum2" : "#eeaeee", #(238, 174, 238)
"plum3" : "#cd96cd", #(205, 150, 205)
"plum4" : "#8b668b", #(139, 102, 139)
"powderblue" : "#b0e0e6", #(176, 224, 230)
"purple" : "#7e1e9c", #(126, 30, 156)
"purple1" : "#9b30ff", #(155, 48, 255)
"purple2" : "#912cee", #(145, 44, 238)
"purple3" : "#7d26cd", #(125, 38, 205)
"purple4" : "#551a8b", #( 85, 26, 139)
"red" : "#e50000", #(229, 0, 0)
"red1" : "#ff0000", #(255, 0, 0)
"red2" : "#ee0000", #(238, 0, 0)
"red3" : "#cd0000", #(205, 0, 0)
"red4" : "#8b0000", #(139, 0, 0)
"rosybrown" : "#bc8f8f", #(188, 143, 143)
"rosybrown1" : "#ffc1c1", #(255, 193, 193)
"rosybrown2" : "#eeb4b4", #(238, 180, 180)
"rosybrown3" : "#cd9b9b", #(205, 155, 155)
"rosybrown4" : "#8b6969", #(139, 105, 105)
"royalblue" : "#4169e1", #( 65, 105, 225)
"royalblue1" : "#4876ff", #( 72, 118, 255)
"royalblue2" : "#436eee", #( 67, 110, 238)
"royalblue3" : "#3a5fcd", #( 58, 95, 205)
"royalblue4" : "#27408b", #( 39, 64, 139)
"salmon" : "#ff796c", #(255, 121, 108)
"salmon1" : "#ff8c69", #(255, 140, 105)
"salmon2" : "#ee8262", #(238, 130, 98)
"salmon3" : "#cd7054", #(205, 112, 84)
"salmon4" : "#8b4c39", #(139, 76, 57)
"saddlebrown" : "#8b4513", #(139, 69, 19)
"sandybrown" : "#f4a460", #(244, 164, 96)
"seagreen" : "#2e8b57", #( 46, 139, 87)
"seagreen1" : "#54ff9f", #( 84, 255, 159)
"seagreen2" : "#4eee94", #( 78, 238, 148)
"seagreen3" : "#43cd80", #( 67, 205, 128)
"seagreen4" : "#2e8b57", #( 46, 139, 87)
"seashell" : "#fff5ee", #(255, 245, 238)
"seashell1" : "#fff5ee", #(255, 245, 238)
"seashell2" : "#eee5de", #(238, 229, 222)
"seashell3" : "#cdc5bf", #(205, 197, 191)
"seashell4" : "#8b8682", #(139, 134, 130)
"sienna" : "#a9561e", #(169, 86, 30)
"sienna1" : "#ff8247", #(255, 130, 71)
"sienna2" : "#ee7942", #(238, 121, 66)
"sienna3" : "#cd6839", #(205, 104, 57)
"sienna4" : "#8b4726", #(139, 71, 38)
"silver" : "#c5c9c7", #(197, 201, 199)
"skyblue" : "#87ceeb", #(135, 206, 235)
"skyblue1" : "#87ceff", #(135, 206, 255)
"skyblue2" : "#7ec0ee", #(126, 192, 238)
"skyblue3" : "#6ca6cd", #(108, 166, 205)
"skyblue4" : "#4a708b", #( 74, 112, 139)
"slateblue" : "#6a5acd", #(106, 90, 205)
"slateblue1" : "#836fff", #(131, 111, 255)
"slateblue2" : "#7a67ee", #(122, 103, 238)
"slateblue3" : "#6959cd", #(105, 89, 205)
"slateblue4" : "#473c8b", #( 71, 60, 139)
"slategray" : "#708090", #(112, 128, 144)
"slategray1" : "#c6e2ff", #(198, 226, 255)
"slategray2" : "#b9d3ee", #(185, 211, 238)
"slategray3" : "#9fb6cd", #(159, 182, 205)
"slategray4" : "#6c7b8b", #(108, 123, 139)
"slategrey" : "#708090", #(112, 128, 144)
"snow" : "#fffafa", #(255, 250, 250)
"snow1" : "#fffafa", #(255, 250, 250)
"snow2" : "#eee9e9", #(238, 233, 233)
"snow3" : "#cdc9c9", #(205, 201, 201)
"snow4" : "#8b8989", #(139, 137, 137)
"springgreen" : "#00ff7f", #( 0, 255, 127)
"springgreen1" : "#00ff7f", #( 0, 255, 127)
"springgreen2" : "#00ee76", #( 0, 238, 118)
"springgreen3" : "#00cd66", #( 0, 205, 102)
"springgreen4" : "#008b45", #( 0, 139, 69)
"steelblue" : "#4682b4", #( 70, 130, 180)
"steelblue1" : "#63b8ff", #( 99, 184, 255)
"steelblue2" : "#5cacee", #( 92, 172, 238)
"steelblue3" : "#4f94cd", #( 79, 148, 205)
"steelblue4" : "#36648b", #( 54, 100, 139)
"tan" : "#d1b26f", #(209, 178, 111)
"tan1" : "#ffa54f", #(255, 165, 79)
"tan2" : "#ee9a49", #(238, 154, 73)
"tan3" : "#cd853f", #(205, 133, 63)
"tan4" : "#8b5a2b", #(139, 90, 43)
"teal" : "#029386", #( 2, 147, 134)
"thistle" : "#d8bfd8", #(216, 191, 216)
"thistle1" : "#ffe1ff", #(255, 225, 255)
"thistle2" : "#eed2ee", #(238, 210, 238)
"thistle3" : "#cdb5cd", #(205, 181, 205)
"thistle4" : "#8b7b8b", #(139, 123, 139)
"tomato" : "#ef4026", #(239, 64, 38)
"tomato1" : "#ff6347", #(255, 99, 71)
"tomato2" : "#ee5c42", #(238, 92, 66)
"tomato3" : "#cd4f39", #(205, 79, 57)
"tomato4" : "#8b3626", #(139, 54, 38)
"turquoise" : "#06c2ac", #( 6, 194, 172)
"turquoise1" : "#00f5ff", #( 0, 245, 255)
"turquoise2" : "#00e5ee", #( 0, 229, 238)
"turquoise3" : "#00c5cd", #( 0, 197, 205)
"turquoise4" : "#00868b", #( 0, 134, 139)
"violet" : "#9a0eea", #(154, 14, 234)
"violetred" : "#d02090", #(208, 32, 144)
"violetred1" : "#ff3e96", #(255, 62, 150)
"violetred2" : "#ee3a8c", #(238, 58, 140)
"violetred3" : "#cd3278", #(205, 50, 120)
"violetred4" : "#8b2252", #(139, 34, 82)
"wheat" : "#fbdd7e", #(251, 221, 126)
"wheat1" : "#ffe7ba", #(255, 231, 186)
"wheat2" : "#eed8ae", #(238, 216, 174)
"wheat3" : "#cdba96", #(205, 186, 150)
"wheat4" : "#8b7e66", #(139, 126, 102)
"white" : "#ffffff", #(255, 255, 255)
"whitesmoke" : "#f5f5f5", #(245, 245, 245)
"yellow" : "#ffff14", #(255, 255, 20)
"yellow1" : "#ffff00", #(255, 255, 0)
"yellow2" : "#eeee00", #(238, 238, 0)
"yellow3" : "#cdcd00", #(205, 205, 0)
"yellow4" : "#8b8b00", #(139, 139, 0)
"yellowgreen" : "#bbf90f", #(187, 249, 15)
"acid green" : "#8ffe09", #(143, 254, 9)
"adobe" : "#bd6c48", #(189, 108, 72)
"algae" : "#54ac68", #( 84, 172, 104)
"algae green" : "#21c36f", #( 33, 195, 111)
"almost black" : "#070d0d", #( 7, 13, 13)
"amber" : "#feb308", #(254, 179, 8)
"amethyst" : "#9b5fc0", #(155, 95, 192)
"apple" : "#6ecb3c", #(110, 203, 60)
"apple green" : "#76cd26", #(118, 205, 38)
"apricot" : "#ffb16d", #(255, 177, 109)
"aqua blue" : "#02d8e9", #( 2, 216, 233)
"aqua green" : "#12e193", #( 18, 225, 147)
"aqua marine" : "#2ee8bb", #( 46, 232, 187)
"army green" : "#4b5d16", #( 75, 93, 22)
"asparagus" : "#77ab56", #(119, 171, 86)
"aubergine" : "#3d0734", #( 61, 7, 52)
"auburn" : "#9a3001", #(154, 48, 1)
"avocado" : "#90b134", #(144, 177, 52)
"avocado green" : "#87a922", #(135, 169, 34)
"azul" : "#1d5dec", #( 29, 93, 236)
"baby blue" : "#a2cffe", #(162, 207, 254)
"baby green" : "#8cff9e", #(140, 255, 158)
"baby pink" : "#ffb7ce", #(255, 183, 206)
"baby poo" : "#ab9004", #(171, 144, 4)
"baby poop" : "#937c00", #(147, 124, 0)
"baby poop green" : "#8f9805", #(143, 152, 5)
"baby puke green" : "#b6c406", #(182, 196, 6)
"baby purple" : "#ca9bf7", #(202, 155, 247)
"baby shit brown" : "#ad900d", #(173, 144, 13)
"baby shit green" : "#889717", #(136, 151, 23)
"banana" : "#ffff7e", #(255, 255, 126)
"banana yellow" : "#fafe4b", #(250, 254, 75)
"barbie pink" : "#fe46a5", #(254, 70, 165)
"barf green" : "#94ac02", #(148, 172, 2)
"barney" : "#ac1db8", #(172, 29, 184)
"barney purple" : "#a00498", #(160, 4, 152)
"battleship grey" : "#6b7c85", #(107, 124, 133)
"berry" : "#990f4b", #(153, 15, 75)
"bile" : "#b5c306", #(181, 195, 6)
"bland" : "#afa88b", #(175, 168, 139)
"blood" : "#770001", #(119, 0, 1)
"blood orange" : "#fe4b03", #(254, 75, 3)
"blood red" : "#980002", #(152, 0, 2)
"blue blue" : "#2242c7", #( 34, 66, 199)
"blue green" : "#137e6d", #( 19, 126, 109)
"blue grey" : "#607c8e", #( 96, 124, 142)
"blue purple" : "#5729ce", #( 87, 41, 206)
"blue violet" : "#5d06e9", #( 93, 6, 233)
"blue with a hint of purple" : "#533cc6", #( 83, 60, 198)
"blue/green" : "#0f9b8e", #( 15, 155, 142)
"blue/grey" : "#758da3", #(117, 141, 163)
"blue/purple" : "#5a06ef", #( 90, 6, 239)
"blueberry" : "#464196", #( 70, 65, 150)
"bluegreen" : "#017a79", #( 1, 122, 121)
"bluegrey" : "#85a3b2", #(133, 163, 178)
"bluey green" : "#2bb179", #( 43, 177, 121)
"bluey grey" : "#89a0b0", #(137, 160, 176)
"bluey purple" : "#6241c7", #( 98, 65, 199)
"bluish" : "#2976bb", #( 41, 118, 187)
"bluish green" : "#10a674", #( 16, 166, 116)
"bluish grey" : "#748b97", #(116, 139, 151)
"bluish purple" : "#703be7", #(112, 59, 231)
"blurple" : "#5539cc", #( 85, 57, 204)
"blush" : "#f29e8e", #(242, 158, 142)
"blush pink" : "#fe828c", #(254, 130, 140)
"booger" : "#9bb53c", #(155, 181, 60)
"booger green" : "#96b403", #(150, 180, 3)
"bordeaux" : "#7b002c", #(123, 0, 44)
"boring green" : "#63b365", #( 99, 179, 101)
"bottle green" : "#044a05", #( 4, 74, 5)
"brick" : "#a03623", #(160, 54, 35)
"brick orange" : "#c14a09", #(193, 74, 9)
"brick red" : "#8f1402", #(143, 20, 2)
"bright aqua" : "#0bf9ea", #( 11, 249, 234)
"bright blue" : "#0165fc", #( 1, 101, 252)
"bright cyan" : "#41fdfe", #( 65, 253, 254)
"bright green" : "#01ff07", #( 1, 255, 7)
"bright lavender" : "#c760ff", #(199, 96, 255)
"bright light blue" : "#26f7fd", #( 38, 247, 253)
"bright light green" : "#2dfe54", #( 45, 254, 84)
"bright lilac" : "#c95efb", #(201, 94, 251)
"bright lime" : "#87fd05", #(135, 253, 5)
"bright lime green" : "#65fe08", #(101, 254, 8)
"bright magenta" : "#ff08e8", #(255, 8, 232)
"bright olive" : "#9cbb04", #(156, 187, 4)
"bright orange" : "#ff5b00", #(255, 91, 0)
"bright pink" : "#fe01b1", #(254, 1, 177)
"bright purple" : "#be03fd", #(190, 3, 253)
"bright red" : "#ff000d", #(255, 0, 13)
"bright sea green" : "#05ffa6", #( 5, 255, 166)
"bright sky blue" : "#02ccfe", #( 2, 204, 254)
"bright teal" : "#01f9c6", #( 1, 249, 198)
"bright turquoise" : "#0ffef9", #( 15, 254, 249)
"bright violet" : "#ad0afd", #(173, 10, 253)
"bright yellow" : "#fffd01", #(255, 253, 1)
"bright yellow green" : "#9dff00", #(157, 255, 0)
"british racing green" : "#05480d", #( 5, 72, 13)
"bronze" : "#a87900", #(168, 121, 0)
"brown green" : "#706c11", #(112, 108, 17)
"brown grey" : "#8d8468", #(141, 132, 104)
"brown orange" : "#b96902", #(185, 105, 2)
"brown red" : "#922b05", #(146, 43, 5)
"brown yellow" : "#b29705", #(178, 151, 5)
"brownish" : "#9c6d57", #(156, 109, 87)
"brownish green" : "#6a6e09", #(106, 110, 9)
"brownish grey" : "#86775f", #(134, 119, 95)
"brownish orange" : "#cb7723", #(203, 119, 35)
"brownish pink" : "#c27e79", #(194, 126, 121)
"brownish purple" : "#76424e", #(118, 66, 78)
"brownish red" : "#9e3623", #(158, 54, 35)
"brownish yellow" : "#c9b003", #(201, 176, 3)
"browny green" : "#6f6c0a", #(111, 108, 10)
"browny orange" : "#ca6b02", #(202, 107, 2)
"bruise" : "#7e4071", #(126, 64, 113)
"bubble gum pink" : "#ff69af", #(255, 105, 175)
"bubblegum" : "#ff6cb5", #(255, 108, 181)
"bubblegum pink" : "#fe83cc", #(254, 131, 204)
"buff" : "#fef69e", #(254, 246, 158)
"burgundy" : "#610023", #( 97, 0, 35)
"burnt orange" : "#c04e01", #(192, 78, 1)
"burnt red" : "#9f2305", #(159, 35, 5)
"burnt siena" : "#b75203", #(183, 82, 3)
"burnt sienna" : "#b04e0f", #(176, 78, 15)
"burnt umber" : "#a0450e", #(160, 69, 14)
"burnt yellow" : "#d5ab09", #(213, 171, 9)
"burple" : "#6832e3", #(104, 50, 227)
"butter" : "#ffff81", #(255, 255, 129)
"butter yellow" : "#fffd74", #(255, 253, 116)
"butterscotch" : "#fdb147", #(253, 177, 71)
"cadet blue" : "#4e7496", #( 78, 116, 150)
"camel" : "#c69f59", #(198, 159, 89)
"camo" : "#7f8f4e", #(127, 143, 78)
"camo green" : "#526525", #( 82, 101, 37)
"camouflage green" : "#4b6113", #( 75, 97, 19)
"canary" : "#fdff63", #(253, 255, 99)
"canary yellow" : "#fffe40", #(255, 254, 64)
"candy pink" : "#ff63e9", #(255, 99, 233)
"caramel" : "#af6f09", #(175, 111, 9)
"carmine" : "#9d0216", #(157, 2, 22)
"carnation" : "#fd798f", #(253, 121, 143)
"carnation pink" : "#ff7fa7", #(255, 127, 167)
"carolina blue" : "#8ab8fe", #(138, 184, 254)
"celadon" : "#befdb7", #(190, 253, 183)
"celery" : "#c1fd95", #(193, 253, 149)
"cement" : "#a5a391", #(165, 163, 145)
"cerise" : "#de0c62", #(222, 12, 98)
"cerulean" : "#0485d1", #( 4, 133, 209)
"cerulean blue" : "#056eee", #( 5, 110, 238)
"charcoal" : "#343837", #( 52, 56, 55)
"charcoal grey" : "#3c4142", #( 60, 65, 66)
"cherry" : "#cf0234", #(207, 2, 52)
"cherry red" : "#f7022a", #(247, 2, 42)
"chestnut" : "#742802", #(116, 40, 2)
"chocolate brown" : "#411900", #( 65, 25, 0)
"cinnamon" : "#ac4f06", #(172, 79, 6)
"claret" : "#680018", #(104, 0, 24)
"clay" : "#b66a50", #(182, 106, 80)
"clay brown" : "#b2713d", #(178, 113, 61)
"clear blue" : "#247afd", #( 36, 122, 253)
"cloudy blue" : "#acc2d9", #(172, 194, 217)
"cobalt" : "#1e488f", #( 30, 72, 143)
"cobalt blue" : "#030aa7", #( 3, 10, 167)
"cocoa" : "#875f42", #(135, 95, 66)
"coffee" : "#a6814c", #(166, 129, 76)
"cool blue" : "#4984b8", #( 73, 132, 184)
"cool green" : "#33b864", #( 51, 184, 100)
"cool grey" : "#95a3a6", #(149, 163, 166)
"copper" : "#b66325", #(182, 99, 37)
"coral pink" : "#ff6163", #(255, 97, 99)
"cornflower" : "#6a79f7", #(106, 121, 247)
"cornflower blue" : "#5170d7", #( 81, 112, 215)
"cranberry" : "#9e003a", #(158, 0, 58)
"cream" : "#ffffc2", #(255, 255, 194)
"creme" : "#ffffb6", #(255, 255, 182)
"custard" : "#fffd78", #(255, 253, 120)
"dandelion" : "#fedf08", #(254, 223, 8)
"dark" : "#1b2431", #( 27, 36, 49)
"dark aqua" : "#05696b", #( 5, 105, 107)
"dark aquamarine" : "#017371", #( 1, 115, 113)
"dark beige" : "#ac9362", #(172, 147, 98)
"dark blue" : "#00035b", #( 0, 3, 91)
"dark blue green" : "#005249", #( 0, 82, 73)
"dark blue grey" : "#1f3b4d", #( 31, 59, 77)
"dark brown" : "#341c02", #( 52, 28, 2)
"dark coral" : "#cf524e", #(207, 82, 78)
"dark cream" : "#fff39a", #(255, 243, 154)
"dark cyan" : "#0a888a", #( 10, 136, 138)
"dark forest green" : "#002d04", #( 0, 45, 4)
"dark fuchsia" : "#9d0759", #(157, 7, 89)
"dark gold" : "#b59410", #(181, 148, 16)
"dark grass green" : "#388004", #( 56, 128, 4)
"dark green" : "#033500", #( 3, 53, 0)
"dark green blue" : "#1f6357", #( 31, 99, 87)
"dark grey" : "#363737", #( 54, 55, 55)
"dark grey blue" : "#29465b", #( 41, 70, 91)
"dark hot pink" : "#d90166", #(217, 1, 102)
"dark indigo" : "#1f0954", #( 31, 9, 84)
"dark khaki" : "#9b8f55", #(155, 143, 85)
"dark lavender" : "#856798", #(133, 103, 152)
"dark lilac" : "#9c6da5", #(156, 109, 165)
"dark lime" : "#84b701", #(132, 183, 1)
"dark lime green" : "#7ebd01", #(126, 189, 1)
"dark magenta" : "#960056", #(150, 0, 86)
"dark maroon" : "#3c0008", #( 60, 0, 8)
"dark mauve" : "#874c62", #(135, 76, 98)
"dark mint" : "#48c072", #( 72, 192, 114)
"dark mint green" : "#20c073", #( 32, 192, 115)
"dark mustard" : "#a88905", #(168, 137, 5)
"dark navy" : "#000435", #( 0, 4, 53)
"dark navy blue" : "#00022e", #( 0, 2, 46)
"dark olive" : "#373e02", #( 55, 62, 2)
"dark olive green" : "#3c4d03", #( 60, 77, 3)
"dark orange" : "#c65102", #(198, 81, 2)
"dark pastel green" : "#56ae57", #( 86, 174, 87)
"dark peach" : "#de7e5d", #(222, 126, 93)
"dark periwinkle" : "#665fd1", #(102, 95, 209)
"dark pink" : "#cb416b", #(203, 65, 107)
"dark plum" : "#3f012c", #( 63, 1, 44)
"dark purple" : "#35063e", #( 53, 6, 62)
"dark red" : "#840000", #(132, 0, 0)
"dark rose" : "#b5485d", #(181, 72, 93)
"dark royal blue" : "#02066f", #( 2, 6, 111)
"dark sage" : "#598556", #( 89, 133, 86)
"dark salmon" : "#c85a53", #(200, 90, 83)
"dark sand" : "#a88f59", #(168, 143, 89)
"dark sea green" : "#11875d", #( 17, 135, 93)
"dark seafoam" : "#1fb57a", #( 31, 181, 122)
"dark seafoam green" : "#3eaf76", #( 62, 175, 118)
"dark sky blue" : "#448ee4", #( 68, 142, 228)
"dark slate blue" : "#214761", #( 33, 71, 97)
"dark tan" : "#af884a", #(175, 136, 74)
"dark taupe" : "#7f684e", #(127, 104, 78)
"dark teal" : "#014d4e", #( 1, 77, 78)
"dark turquoise" : "#045c5a", #( 4, 92, 90)
"dark violet" : "#34013f", #( 52, 1, 63)
"dark yellow" : "#d5b60a", #(213, 182, 10)
"dark yellow green" : "#728f02", #(114, 143, 2)
"darkish blue" : "#014182", #( 1, 65, 130)
"darkish green" : "#287c37", #( 40, 124, 55)
"darkish pink" : "#da467d", #(218, 70, 125)
"darkish purple" : "#751973", #(117, 25, 115)
"darkish red" : "#a90308", #(169, 3, 8)
"deep aqua" : "#08787f", #( 8, 120, 127)
"deep blue" : "#040273", #( 4, 2, 115)
"deep brown" : "#410200", #( 65, 2, 0)
"deep green" : "#02590f", #( 2, 89, 15)
"deep lavender" : "#8d5eb7", #(141, 94, 183)
"deep lilac" : "#966ebd", #(150, 110, 189)
"deep magenta" : "#a0025c", #(160, 2, 92)
"deep orange" : "#dc4d01", #(220, 77, 1)
"deep pink" : "#cb0162", #(203, 1, 98)
"deep purple" : "#36013f", #( 54, 1, 63)
"deep red" : "#9a0200", #(154, 2, 0)
"deep rose" : "#c74767", #(199, 71, 103)
"deep sea blue" : "#015482", #( 1, 84, 130)
"deep sky blue" : "#0d75f8", #( 13, 117, 248)
"deep teal" : "#00555a", #( 0, 85, 90)
"deep turquoise" : "#017374", #( 1, 115, 116)
"deep violet" : "#490648", #( 73, 6, 72)
"denim" : "#3b638c", #( 59, 99, 140)
"denim blue" : "#3b5b92", #( 59, 91, 146)
"desert" : "#ccad60", #(204, 173, 96)
"diarrhea" : "#9f8303", #(159, 131, 3)
"dirt" : "#8a6e45", #(138, 110, 69)
"dirt brown" : "#836539", #(131, 101, 57)
"dirty blue" : "#3f829d", #( 63, 130, 157)
"dirty green" : "#667e2c", #(102, 126, 44)
"dirty orange" : "#c87606", #(200, 118, 6)
"dirty pink" : "#ca7b80", #(202, 123, 128)
"dirty purple" : "#734a65", #(115, 74, 101)
"dirty yellow" : "#cdc50a", #(205, 197, 10)
"dodger blue" : "#3e82fc", #( 62, 130, 252)
"drab" : "#828344", #(130, 131, 68)
"drab green" : "#749551", #(116, 149, 81)
"dried blood" : "#4b0101", #( 75, 1, 1)
"duck egg blue" : "#c3fbf4", #(195, 251, 244)
"dull blue" : "#49759c", #( 73, 117, 156)
"dull brown" : "#876e4b", #(135, 110, 75)
"dull green" : "#74a662", #(116, 166, 98)
"dull orange" : "#d8863b", #(216, 134, 59)
"dull pink" : "#d5869d", #(213, 134, 157)
"dull purple" : "#84597e", #(132, 89, 126)
"dull red" : "#bb3f3f", #(187, 63, 63)
"dull teal" : "#5f9e8f", #( 95, 158, 143)
"dull yellow" : "#eedc5b", #(238, 220, 91)
"dusk" : "#4e5481", #( 78, 84, 129)
"dusk blue" : "#26538d", #( 38, 83, 141)
"dusky blue" : "#475f94", #( 71, 95, 148)
"dusky pink" : "#cc7a8b", #(204, 122, 139)
"dusky purple" : "#895b7b", #(137, 91, 123)
"dusky rose" : "#ba6873", #(186, 104, 115)
"dust" : "#b2996e", #(178, 153, 110)
"dusty blue" : "#5a86ad", #( 90, 134, 173)
"dusty green" : "#76a973", #(118, 169, 115)
"dusty lavender" : "#ac86a8", #(172, 134, 168)
"dusty orange" : "#f0833a", #(240, 131, 58)
"dusty pink" : "#d58a94", #(213, 138, 148)
"dusty purple" : "#825f87", #(130, 95, 135)
"dusty red" : "#b9484e", #(185, 72, 78)
"dusty rose" : "#c0737a", #(192, 115, 122)
"dusty teal" : "#4c9085", #( 76, 144, 133)
"earth" : "#a2653e", #(162, 101, 62)
"easter green" : "#8cfd7e", #(140, 253, 126)
"easter purple" : "#c071fe", #(192, 113, 254)
"ecru" : "#feffca", #(254, 255, 202)
"egg shell" : "#fffcc4", #(255, 252, 196)
"eggplant" : "#380835", #( 56, 8, 53)
"eggplant purple" : "#430541", #( 67, 5, 65)
"eggshell" : "#ffffd4", #(255, 255, 212)
"eggshell blue" : "#c4fff7", #(196, 255, 247)
"electric blue" : "#0652ff", #( 6, 82, 255)
"electric green" : "#21fc0d", #( 33, 252, 13)
"electric lime" : "#a8ff04", #(168, 255, 4)
"electric pink" : "#ff0490", #(255, 4, 144)
"electric purple" : "#aa23ff", #(170, 35, 255)
"emerald" : "#01a049", #( 1, 160, 73)
"emerald green" : "#028f1e", #( 2, 143, 30)
"evergreen" : "#05472a", #( 5, 71, 42)
"faded blue" : "#658cbb", #(101, 140, 187)
"faded green" : "#7bb274", #(123, 178, 116)
"faded orange" : "#f0944d", #(240, 148, 77)
"faded pink" : "#de9dac", #(222, 157, 172)
"faded purple" : "#916e99", #(145, 110, 153)
"faded red" : "#d3494e", #(211, 73, 78)
"faded yellow" : "#feff7f", #(254, 255, 127)
"fawn" : "#cfaf7b", #(207, 175, 123)
"fern" : "#63a950", #( 99, 169, 80)
"fern green" : "#548d44", #( 84, 141, 68)
"fire engine red" : "#fe0002", #(254, 0, 2)
"flat blue" : "#3c73a8", #( 60, 115, 168)
"flat green" : "#699d4c", #(105, 157, 76)
"fluorescent green" : "#08ff08", #( 8, 255, 8)
"fluro green" : "#0aff02", #( 10, 255, 2)
"foam green" : "#90fda9", #(144, 253, 169)
"forest" : "#0b5509", #( 11, 85, 9)
"forest green" : "#06470c", #( 6, 71, 12)
"forrest green" : "#154406", #( 21, 68, 6)
"french blue" : "#436bad", #( 67, 107, 173)
"fresh green" : "#69d84f", #(105, 216, 79)
"frog green" : "#58bc08", #( 88, 188, 8)
"golden" : "#f5bf03", #(245, 191, 3)
"golden brown" : "#b27a01", #(178, 122, 1)
"golden rod" : "#f9bc08", #(249, 188, 8)
"golden yellow" : "#fec615", #(254, 198, 21)
"grape" : "#6c3461", #(108, 52, 97)
"grape purple" : "#5d1451", #( 93, 20, 81)
"grapefruit" : "#fd5956", #(253, 89, 86)
"grass" : "#5cac2d", #( 92, 172, 45)
"grass green" : "#3f9b0b", #( 63, 155, 11)
"grassy green" : "#419c03", #( 65, 156, 3)
"green apple" : "#5edc1f", #( 94, 220, 31)
"green blue" : "#06b48b", #( 6, 180, 139)
"green brown" : "#544e03", #( 84, 78, 3)
"green grey" : "#77926f", #(119, 146, 111)
"green teal" : "#0cb577", #( 12, 181, 119)
"green yellow" : "#c9ff27", #(201, 255, 39)
"green/blue" : "#01c08d", #( 1, 192, 141)
"green/yellow" : "#b5ce08", #(181, 206, 8)
"greenblue" : "#23c48b", #( 35, 196, 139)
"greenish" : "#40a368", #( 64, 163, 104)
"greenish beige" : "#c9d179", #(201, 209, 121)
"greenish blue" : "#0b8b87", #( 11, 139, 135)
"greenish brown" : "#696112", #(105, 97, 18)
"greenish cyan" : "#2afeb7", #( 42, 254, 183)
"greenish grey" : "#96ae8d", #(150, 174, 141)
"greenish tan" : "#bccb7a", #(188, 203, 122)
"greenish teal" : "#32bf84", #( 50, 191, 132)
"greenish turquoise" : "#00fbb0", #( 0, 251, 176)
"greenish yellow" : "#cdfd02", #(205, 253, 2)
"greeny blue" : "#42b395", #( 66, 179, 149)
"greeny brown" : "#696006", #(105, 96, 6)
"greeny grey" : "#7ea07a", #(126, 160, 122)
"greeny yellow" : "#c6f808", #(198, 248, 8)
"grey blue" : "#6b8ba4", #(107, 139, 164)
"grey brown" : "#7f7053", #(127, 112, 83)
"grey green" : "#789b73", #(120, 155, 115)
"grey pink" : "#c3909b", #(195, 144, 155)
"grey purple" : "#826d8c", #(130, 109, 140)
"grey teal" : "#5e9b8a", #( 94, 155, 138)
"grey/blue" : "#647d8e", #(100, 125, 142)
"grey/green" : "#86a17d", #(134, 161, 125)
"greyblue" : "#77a1b5", #(119, 161, 181)
"greyish" : "#a8a495", #(168, 164, 149)
"greyish blue" : "#5e819d", #( 94, 129, 157)
"greyish brown" : "#7a6a4f", #(122, 106, 79)
"greyish green" : "#82a67d", #(130, 166, 125)
"greyish pink" : "#c88d94", #(200, 141, 148)
"greyish purple" : "#887191", #(136, 113, 145)
"greyish teal" : "#719f91", #(113, 159, 145)
"gross green" : "#a0bf16", #(160, 191, 22)
"gunmetal" : "#536267", #( 83, 98, 103)
"hazel" : "#8e7618", #(142, 118, 24)
"heather" : "#a484ac", #(164, 132, 172)
"heliotrope" : "#d94ff5", #(217, 79, 245)
"highlighter green" : "#1bfc06", #( 27, 252, 6)
"hospital green" : "#9be5aa", #(155, 229, 170)
"hot green" : "#25ff29", #( 37, 255, 41)
"hot magenta" : "#f504c9", #(245, 4, 201)
"hot pink" : "#ff028d", #(255, 2, 141)
"hot purple" : "#cb00f5", #(203, 0, 245)
"hunter green" : "#0b4008", #( 11, 64, 8)
"ice" : "#d6fffa", #(214, 255, 250)
"ice blue" : "#d7fffe", #(215, 255, 254)
"icky green" : "#8fae22", #(143, 174, 34)
"indian red" : "#850e04", #(133, 14, 4)
"indigo blue" : "#3a18b1", #( 58, 24, 177)
"iris" : "#6258c4", #( 98, 88, 196)
"irish green" : "#019529", #( 1, 149, 41)
"jade" : "#1fa774", #( 31, 167, 116)
"jade green" : "#2baf6a", #( 43, 175, 106)
"jungle green" : "#048243", #( 4, 130, 67)
"kelley green" : "#009337", #( 0, 147, 55)
"kelly green" : "#02ab2e", #( 2, 171, 46)
"kermit green" : "#5cb200", #( 92, 178, 0)
"key lime" : "#aeff6e", #(174, 255, 110)
"khaki green" : "#728639", #(114, 134, 57)
"kiwi" : "#9cef43", #(156, 239, 67)
"kiwi green" : "#8ee53f", #(142, 229, 63)
"lavender blue" : "#8b88f8", #(139, 136, 248)
"lavender pink" : "#dd85d7", #(221, 133, 215)
"lawn green" : "#4da409", #( 77, 164, 9)
"leaf" : "#71aa34", #(113, 170, 52)
"leaf green" : "#5ca904", #( 92, 169, 4)
"leafy green" : "#51b73b", #( 81, 183, 59)
"leather" : "#ac7434", #(172, 116, 52)
"lemon" : "#fdff52", #(253, 255, 82)
"lemon green" : "#adf802", #(173, 248, 2)
"lemon lime" : "#bffe28", #(191, 254, 40)
"lemon yellow" : "#fdff38", #(253, 255, 56)
"lichen" : "#8fb67b", #(143, 182, 123)
"light aqua" : "#8cffdb", #(140, 255, 219)
"light aquamarine" : "#7bfdc7", #(123, 253, 199)
"light beige" : "#fffeb6", #(255, 254, 182)
"light blue" : "#95d0fc", #(149, 208, 252)
"light blue green" : "#7efbb3", #(126, 251, 179)
"light blue grey" : "#b7c9e2", #(183, 201, 226)
"light bluish green" : "#76fda8", #(118, 253, 168)
"light bright green" : "#53fe5c", #( 83, 254, 92)
"light brown" : "#ad8150", #(173, 129, 80)
"light burgundy" : "#a8415b", #(168, 65, 91)
"light cyan" : "#acfffc", #(172, 255, 252)
"light eggplant" : "#894585", #(137, 69, 133)
"light forest green" : "#4f9153", #( 79, 145, 83)
"light gold" : "#fddc5c", #(253, 220, 92)
"light grass green" : "#9af764", #(154, 247, 100)
"light green" : "#96f97b", #(150, 249, 123)
"light green blue" : "#56fca2", #( 86, 252, 162)
"light greenish blue" : "#63f7b4", #( 99, 247, 180)
"light grey" : "#d8dcd6", #(216, 220, 214)
"light grey blue" : "#9dbcd4", #(157, 188, 212)
"light grey green" : "#b7e1a1", #(183, 225, 161)
"light indigo" : "#6d5acf", #(109, 90, 207)
"light khaki" : "#e6f2a2", #(230, 242, 162)
"light lavendar" : "#efc0fe", #(239, 192, 254)
"light lavender" : "#dfc5fe", #(223, 197, 254)
"light light blue" : "#cafffb", #(202, 255, 251)
"light light green" : "#c8ffb0", #(200, 255, 176)
"light lilac" : "#edc8ff", #(237, 200, 255)
"light lime" : "#aefd6c", #(174, 253, 108)
"light lime green" : "#b9ff66", #(185, 255, 102)
"light magenta" : "#fa5ff7", #(250, 95, 247)
"light maroon" : "#a24857", #(162, 72, 87)
"light mauve" : "#c292a1", #(194, 146, 161)
"light mint" : "#b6ffbb", #(182, 255, 187)
"light mint green" : "#a6fbb2", #(166, 251, 178)
"light moss green" : "#a6c875", #(166, 200, 117)
"light mustard" : "#f7d560", #(247, 213, 96)
"light navy" : "#155084", #( 21, 80, 132)
"light navy blue" : "#2e5a88", #( 46, 90, 136)
"light neon green" : "#4efd54", #( 78, 253, 84)
"light olive" : "#acbf69", #(172, 191, 105)
"light olive green" : "#a4be5c", #(164, 190, 92)
"light orange" : "#fdaa48", #(253, 170, 72)
"light pastel green" : "#b2fba5", #(178, 251, 165)
"light pea green" : "#c4fe82", #(196, 254, 130)
"light peach" : "#ffd8b1", #(255, 216, 177)
"light periwinkle" : "#c1c6fc", #(193, 198, 252)
"light pink" : "#ffd1df", #(255, 209, 223)
"light plum" : "#9d5783", #(157, 87, 131)
"light purple" : "#bf77f6", #(191, 119, 246)
"light red" : "#ff474c", #(255, 71, 76)
"light rose" : "#ffc5cb", #(255, 197, 203)
"light royal blue" : "#3a2efe", #( 58, 46, 254)
"light sage" : "#bcecac", #(188, 236, 172)
"light salmon" : "#fea993", #(254, 169, 147)
"light sea green" : "#98f6b0", #(152, 246, 176)
"light seafoam" : "#a0febf", #(160, 254, 191)
"light seafoam green" : "#a7ffb5", #(167, 255, 181)
"light sky blue" : "#c6fcff", #(198, 252, 255)
"light tan" : "#fbeeac", #(251, 238, 172)
"light teal" : "#90e4c1", #(144, 228, 193)
"light turquoise" : "#7ef4cc", #(126, 244, 204)
"light urple" : "#b36ff6", #(179, 111, 246)
"light violet" : "#d6b4fc", #(214, 180, 252)
"light yellow" : "#fffe7a", #(255, 254, 122)
"light yellow green" : "#ccfd7f", #(204, 253, 127)
"light yellowish green" : "#c2ff89", #(194, 255, 137)
"lighter green" : "#75fd63", #(117, 253, 99)
"lighter purple" : "#a55af4", #(165, 90, 244)
"lightish blue" : "#3d7afd", #( 61, 122, 253)
"lightish green" : "#61e160", #( 97, 225, 96)
"lightish purple" : "#a552e6", #(165, 82, 230)
"lightish red" : "#fe2f4a", #(254, 47, 74)
"lilac" : "#cea2fd", #(206, 162, 253)
"liliac" : "#c48efd", #(196, 142, 253)
"lime green" : "#89fe05", #(137, 254, 5)
"lime yellow" : "#d0fe1d", #(208, 254, 29)
"lipstick" : "#d5174e", #(213, 23, 78)
"lipstick red" : "#c0022f", #(192, 2, 47)
"macaroni and cheese" : "#efb435", #(239, 180, 53)
"mahogany" : "#4a0100", #( 74, 1, 0)
"maize" : "#f4d054", #(244, 208, 84)
"mango" : "#ffa62b", #(255, 166, 43)
"manilla" : "#fffa86", #(255, 250, 134)
"marigold" : "#fcc006", #(252, 192, 6)
"marine" : "#042e60", #( 4, 46, 96)
"marine blue" : "#01386a", #( 1, 56, 106)
"mauve" : "#ae7181", #(174, 113, 129)
"medium blue" : "#2c6fbb", #( 44, 111, 187)
"medium brown" : "#7f5112", #(127, 81, 18)
"medium green" : "#39ad48", #( 57, 173, 72)
"medium grey" : "#7d7f7c", #(125, 127, 124)
"medium pink" : "#f36196", #(243, 97, 150)
"medium purple" : "#9e43a2", #(158, 67, 162)
"melon" : "#ff7855", #(255, 120, 85)
"merlot" : "#730039", #(115, 0, 57)
"metallic blue" : "#4f738e", #( 79, 115, 142)
"mid blue" : "#276ab3", #( 39, 106, 179)
"mid green" : "#50a747", #( 80, 167, 71)
"midnight" : "#03012d", #( 3, 1, 45)
"midnight blue" : "#020035", #( 2, 0, 53)
"midnight purple" : "#280137", #( 40, 1, 55)
"military green" : "#667c3e", #(102, 124, 62)
"milk chocolate" : "#7f4e1e", #(127, 78, 30)
"mint" : "#9ffeb0", #(159, 254, 176)
"mint green" : "#8fff9f", #(143, 255, 159)
"minty green" : "#0bf77d", #( 11, 247, 125)
"mocha" : "#9d7651", #(157, 118, 81)
"moss" : "#769958", #(118, 153, 88)
"moss green" : "#658b38", #(101, 139, 56)
"mossy green" : "#638b27", #( 99, 139, 39)
"mud" : "#735c12", #(115, 92, 18)
"mud brown" : "#60460f", #( 96, 70, 15)
"mud green" : "#606602", #( 96, 102, 2)
"muddy brown" : "#886806", #(136, 104, 6)
"muddy green" : "#657432", #(101, 116, 50)
"muddy yellow" : "#bfac05", #(191, 172, 5)
"mulberry" : "#920a4e", #(146, 10, 78)
"murky green" : "#6c7a0e", #(108, 122, 14)
"mushroom" : "#ba9e88", #(186, 158, 136)
"mustard" : "#ceb301", #(206, 179, 1)
"mustard brown" : "#ac7e04", #(172, 126, 4)
"mustard green" : "#a8b504", #(168, 181, 4)
"mustard yellow" : "#d2bd0a", #(210, 189, 10)
"muted blue" : "#3b719f", #( 59, 113, 159)
"muted green" : "#5fa052", #( 95, 160, 82)
"muted pink" : "#d1768f", #(209, 118, 143)
"muted purple" : "#805b87", #(128, 91, 135)
"nasty green" : "#70b23f", #(112, 178, 63)
"navy blue" : "#001146", #( 0, 17, 70)
"navy green" : "#35530a", #( 53, 83, 10)
"neon blue" : "#04d9ff", #( 4, 217, 255)
"neon green" : "#0cff0c", #( 12, 255, 12)
"neon pink" : "#fe019a", #(254, 1, 154)
"neon purple" : "#bc13fe", #(188, 19, 254)
"neon red" : "#ff073a", #(255, 7, 58)
"neon yellow" : "#cfff04", #(207, 255, 4)
"nice blue" : "#107ab0", #( 16, 122, 176)
"night blue" : "#040348", #( 4, 3, 72)
"ocean" : "#017b92", #( 1, 123, 146)
"ocean blue" : "#03719c", #( 3, 113, 156)
"ocean green" : "#3d9973", #( 61, 153, 115)
"ocher" : "#bf9b0c", #(191, 155, 12)
"ochre" : "#bf9005", #(191, 144, 5)
"ocre" : "#c69c04", #(198, 156, 4)
"off blue" : "#5684ae", #( 86, 132, 174)
"off green" : "#6ba353", #(107, 163, 83)
"off white" : "#ffffe4", #(255, 255, 228)
"off yellow" : "#f1f33f", #(241, 243, 63)
"old pink" : "#c77986", #(199, 121, 134)
"old rose" : "#c87f89", #(200, 127, 137)
"olive brown" : "#645403", #(100, 84, 3)
"olive drab" : "#6f7632", #(111, 118, 50)
"olive green" : "#677a04", #(103, 122, 4)
"olive yellow" : "#c2b709", #(194, 183, 9)
"orange brown" : "#be6400", #(190, 100, 0)
"orange pink" : "#ff6f52", #(255, 111, 82)
"orange red" : "#fd411e", #(253, 65, 30)
"orange yellow" : "#ffad01", #(255, 173, 1)
"orangeish" : "#fd8d49", #(253, 141, 73)
"orangey brown" : "#b16002", #(177, 96, 2)
"orangey red" : "#fa4224", #(250, 66, 36)
"orangey yellow" : "#fdb915", #(253, 185, 21)
"orangish" : "#fc824a", #(252, 130, 74)
"orangish brown" : "#b25f03", #(178, 95, 3)
"orangish red" : "#f43605", #(244, 54, 5)
"pale" : "#fff9d0", #(255, 249, 208)
"pale aqua" : "#b8ffeb", #(184, 255, 235)
"pale blue" : "#d0fefe", #(208, 254, 254)
"pale brown" : "#b1916e", #(177, 145, 110)
"pale cyan" : "#b7fffa", #(183, 255, 250)
"pale gold" : "#fdde6c", #(253, 222, 108)
"pale green" : "#c7fdb5", #(199, 253, 181)
"pale grey" : "#fdfdfe", #(253, 253, 254)
"pale lavender" : "#eecffe", #(238, 207, 254)
"pale light green" : "#b1fc99", #(177, 252, 153)
"pale lilac" : "#e4cbff", #(228, 203, 255)
"pale lime" : "#befd73", #(190, 253, 115)
"pale lime green" : "#b1ff65", #(177, 255, 101)
"pale magenta" : "#d767ad", #(215, 103, 173)
"pale mauve" : "#fed0fc", #(254, 208, 252)
"pale olive" : "#b9cc81", #(185, 204, 129)
"pale olive green" : "#b1d27b", #(177, 210, 123)
"pale orange" : "#ffa756", #(255, 167, 86)
"pale peach" : "#ffe5ad", #(255, 229, 173)
"pale pink" : "#ffcfdc", #(255, 207, 220)
"pale purple" : "#b790d4", #(183, 144, 212)
"pale red" : "#d9544d", #(217, 84, 77)
"pale rose" : "#fdc1c5", #(253, 193, 197)
"pale salmon" : "#ffb19a", #(255, 177, 154)
"pale sky blue" : "#bdf6fe", #(189, 246, 254)
"pale teal" : "#82cbb2", #(130, 203, 178)
"pale turquoise" : "#a5fbd5", #(165, 251, 213)
"pale violet" : "#ceaefa", #(206, 174, 250)
"pale yellow" : "#ffff84", #(255, 255, 132)
"parchment" : "#fefcaf", #(254, 252, 175)
"pastel blue" : "#a2bffe", #(162, 191, 254)
"pastel green" : "#b0ff9d", #(176, 255, 157)
"pastel orange" : "#ff964f", #(255, 150, 79)
"pastel pink" : "#ffbacd", #(255, 186, 205)
"pastel purple" : "#caa0ff", #(202, 160, 255)
"pastel red" : "#db5856", #(219, 88, 86)
"pastel yellow" : "#fffe71", #(255, 254, 113)
"pea" : "#a4bf20", #(164, 191, 32)
"pea green" : "#8eab12", #(142, 171, 18)
"pea soup" : "#929901", #(146, 153, 1)
"pea soup green" : "#94a617", #(148, 166, 23)
"peach" : "#ffb07c", #(255, 176, 124)
"peachy pink" : "#ff9a8a", #(255, 154, 138)
"peacock blue" : "#016795", #( 1, 103, 149)
"pear" : "#cbf85f", #(203, 248, 95)
"periwinkle" : "#8e82fe", #(142, 130, 254)
"periwinkle blue" : "#8f99fb", #(143, 153, 251)
"perrywinkle" : "#8f8ce7", #(143, 140, 231)
"petrol" : "#005f6a", #( 0, 95, 106)
"pig pink" : "#e78ea5", #(231, 142, 165)
"pine" : "#2b5d34", #( 43, 93, 52)
"pine green" : "#0a481e", #( 10, 72, 30)
"pink purple" : "#db4bda", #(219, 75, 218)
"pink red" : "#f5054f", #(245, 5, 79)
"pink/purple" : "#ef1de7", #(239, 29, 231)
"pinkish" : "#d46a7e", #(212, 106, 126)
"pinkish brown" : "#b17261", #(177, 114, 97)
"pinkish grey" : "#c8aca9", #(200, 172, 169)
"pinkish orange" : "#ff724c", #(255, 114, 76)
"pinkish purple" : "#d648d7", #(214, 72, 215)
"pinkish red" : "#f10c45", #(241, 12, 69)
"pinkish tan" : "#d99b82", #(217, 155, 130)
"pinky" : "#fc86aa", #(252, 134, 170)
"pinky purple" : "#c94cbe", #(201, 76, 190)
"pinky red" : "#fc2647", #(252, 38, 71)
"piss yellow" : "#ddd618", #(221, 214, 24)
"pistachio" : "#c0fa8b", #(192, 250, 139)
"plum purple" : "#4e0550", #( 78, 5, 80)
"poison green" : "#40fd14", #( 64, 253, 20)
"poo" : "#8f7303", #(143, 115, 3)
"poo brown" : "#885f01", #(136, 95, 1)
"poop" : "#7f5e00", #(127, 94, 0)
"poop brown" : "#7a5901", #(122, 89, 1)
"poop green" : "#6f7c00", #(111, 124, 0)
"powder blue" : "#b1d1fc", #(177, 209, 252)
"powder pink" : "#ffb2d0", #(255, 178, 208)
"primary blue" : "#0804f9", #( 8, 4, 249)
"prussian blue" : "#004577", #( 0, 69, 119)
"puce" : "#a57e52", #(165, 126, 82)
"puke" : "#a5a502", #(165, 165, 2)
"puke brown" : "#947706", #(148, 119, 6)
"puke green" : "#9aae07", #(154, 174, 7)
"puke yellow" : "#c2be0e", #(194, 190, 14)
"pumpkin" : "#e17701", #(225, 119, 1)
"pumpkin orange" : "#fb7d07", #(251, 125, 7)
"pure blue" : "#0203e2", #( 2, 3, 226)
"purple blue" : "#632de9", #( 99, 45, 233)
"purple brown" : "#673a3f", #(103, 58, 63)
"purple grey" : "#866f85", #(134, 111, 133)
"purple pink" : "#e03fd8", #(224, 63, 216)
"purple red" : "#990147", #(153, 1, 71)
"purple/blue" : "#5d21d0", #( 93, 33, 208)
"purple/pink" : "#d725de", #(215, 37, 222)
"purpleish" : "#98568d", #(152, 86, 141)
"purpleish blue" : "#6140ef", #( 97, 64, 239)
"purpleish pink" : "#df4ec8", #(223, 78, 200)
"purpley" : "#8756e4", #(135, 86, 228)
"purpley blue" : "#5f34e7", #( 95, 52, 231)
"purpley grey" : "#947e94", #(148, 126, 148)
"purpley pink" : "#c83cb9", #(200, 60, 185)
"purplish" : "#94568c", #(148, 86, 140)
"purplish blue" : "#601ef9", #( 96, 30, 249)
"purplish brown" : "#6b4247", #(107, 66, 71)
"purplish grey" : "#7a687f", #(122, 104, 127)
"purplish pink" : "#ce5dae", #(206, 93, 174)
"purplish red" : "#b0054b", #(176, 5, 75)
"purply" : "#983fb2", #(152, 63, 178)
"purply blue" : "#661aee", #(102, 26, 238)
"purply pink" : "#f075e6", #(240, 117, 230)
"putty" : "#beae8a", #(190, 174, 138)
"racing green" : "#014600", #( 1, 70, 0)
"radioactive green" : "#2cfa1f", #( 44, 250, 31)
"raspberry" : "#b00149", #(176, 1, 73)
"raw sienna" : "#9a6200", #(154, 98, 0)
"raw umber" : "#a75e09", #(167, 94, 9)
"really light blue" : "#d4ffff", #(212, 255, 255)
"red brown" : "#8b2e16", #(139, 46, 22)
"red orange" : "#fd3c06", #(253, 60, 6)
"red pink" : "#fa2a55", #(250, 42, 85)
"red purple" : "#820747", #(130, 7, 71)
"red violet" : "#9e0168", #(158, 1, 104)
"red wine" : "#8c0034", #(140, 0, 52)
"reddish" : "#c44240", #(196, 66, 64)
"reddish brown" : "#7f2b0a", #(127, 43, 10)
"reddish grey" : "#997570", #(153, 117, 112)
"reddish orange" : "#f8481c", #(248, 72, 28)
"reddish pink" : "#fe2c54", #(254, 44, 84)
"reddish purple" : "#910951", #(145, 9, 81)
"reddy brown" : "#6e1005", #(110, 16, 5)
"rich blue" : "#021bf9", #( 2, 27, 249)
"rich purple" : "#720058", #(114, 0, 88)
"robin egg blue" : "#8af1fe", #(138, 241, 254)
"robin's egg" : "#6dedfd", #(109, 237, 253)
"robin's egg blue" : "#98eff9", #(152, 239, 249)
"rosa" : "#fe86a4", #(254, 134, 164)
"rose" : "#cf6275", #(207, 98, 117)
"rose pink" : "#f7879a", #(247, 135, 154)
"rose red" : "#be013c", #(190, 1, 60)
"rosy pink" : "#f6688e", #(246, 104, 142)
"rouge" : "#ab1239", #(171, 18, 57)
"royal" : "#0c1793", #( 12, 23, 147)
"royal blue" : "#0504aa", #( 5, 4, 170)
"royal purple" : "#4b006e", #( 75, 0, 110)
"ruby" : "#ca0147", #(202, 1, 71)
"russet" : "#a13905", #(161, 57, 5)
"rust" : "#a83c09", #(168, 60, 9)
"rust brown" : "#8b3103", #(139, 49, 3)
"rust orange" : "#c45508", #(196, 85, 8)
"rust red" : "#aa2704", #(170, 39, 4)
"rusty orange" : "#cd5909", #(205, 89, 9)
"rusty red" : "#af2f0d", #(175, 47, 13)
"saffron" : "#feb209", #(254, 178, 9)
"sage" : "#87ae73", #(135, 174, 115)
"sage green" : "#88b378", #(136, 179, 120)
"salmon pink" : "#fe7b7c", #(254, 123, 124)
"sand" : "#e2ca76", #(226, 202, 118)
"sand brown" : "#cba560", #(203, 165, 96)
"sand yellow" : "#fce166", #(252, 225, 102)
"sandstone" : "#c9ae74", #(201, 174, 116)
"sandy" : "#f1da7a", #(241, 218, 122)
"sandy brown" : "#c4a661", #(196, 166, 97)
"sandy yellow" : "#fdee73", #(253, 238, 115)
"sap green" : "#5c8b15", #( 92, 139, 21)
"sapphire" : "#2138ab", #( 33, 56, 171)
"scarlet" : "#be0119", #(190, 1, 25)
"sea" : "#3c9992", #( 60, 153, 146)
"sea blue" : "#047495", #( 4, 116, 149)
"sea green" : "#53fca1", #( 83, 252, 161)
"seafoam" : "#80f9ad", #(128, 249, 173)
"seafoam blue" : "#78d1b6", #(120, 209, 182)
"seafoam green" : "#7af9ab", #(122, 249, 171)
"seaweed" : "#18d17b", #( 24, 209, 123)
"seaweed green" : "#35ad6b", #( 53, 173, 107)
"sepia" : "#985e2b", #(152, 94, 43)
"shamrock" : "#01b44c", #( 1, 180, 76)
"shamrock green" : "#02c14d", #( 2, 193, 77)
"shit" : "#7f5f00", #(127, 95, 0)
"shit brown" : "#7b5804", #(123, 88, 4)
"shit green" : "#758000", #(117, 128, 0)
"shocking pink" : "#fe02a2", #(254, 2, 162)
"sick green" : "#9db92c", #(157, 185, 44)
"sickly green" : "#94b21c", #(148, 178, 28)
"sickly yellow" : "#d0e429", #(208, 228, 41)
"sky" : "#82cafc", #(130, 202, 252)
"sky blue" : "#75bbfd", #(117, 187, 253)
"slate" : "#516572", #( 81, 101, 114)
"slate blue" : "#5b7c99", #( 91, 124, 153)
"slate green" : "#658d6d", #(101, 141, 109)
"slate grey" : "#59656d", #( 89, 101, 109)
"slime green" : "#99cc04", #(153, 204, 4)
"snot" : "#acbb0d", #(172, 187, 13)
"snot green" : "#9dc100", #(157, 193, 0)
"soft blue" : "#6488ea", #(100, 136, 234)
"soft green" : "#6fc276", #(111, 194, 118)
"soft pink" : "#fdb0c0", #(253, 176, 192)
"soft purple" : "#a66fb5", #(166, 111, 181)
"spearmint" : "#1ef876", #( 30, 248, 118)
"spring green" : "#a9f971", #(169, 249, 113)
"spruce" : "#0a5f38", #( 10, 95, 56)
"squash" : "#f2ab15", #(242, 171, 21)
"steel" : "#738595", #(115, 133, 149)
"steel blue" : "#5a7d9a", #( 90, 125, 154)
"steel grey" : "#6f828a", #(111, 130, 138)
"stone" : "#ada587", #(173, 165, 135)
"stormy blue" : "#507b9c", #( 80, 123, 156)
"straw" : "#fcf679", #(252, 246, 121)
"strawberry" : "#fb2943", #(251, 41, 67)
"strong blue" : "#0c06f7", #( 12, 6, 247)
"strong pink" : "#ff0789", #(255, 7, 137)
"sun yellow" : "#ffdf22", #(255, 223, 34)
"sunflower" : "#ffc512", #(255, 197, 18)
"sunflower yellow" : "#ffda03", #(255, 218, 3)
"sunny yellow" : "#fff917", #(255, 249, 23)
"sunshine yellow" : "#fffd37", #(255, 253, 55)
"swamp" : "#698339", #(105, 131, 57)
"swamp green" : "#748500", #(116, 133, 0)
"tan brown" : "#ab7e4c", #(171, 126, 76)
"tan green" : "#a9be70", #(169, 190, 112)
"tangerine" : "#ff9408", #(255, 148, 8)
"taupe" : "#b9a281", #(185, 162, 129)
"tea" : "#65ab7c", #(101, 171, 124)
"tea green" : "#bdf8a3", #(189, 248, 163)
"teal blue" : "#01889f", #( 1, 136, 159)
"teal green" : "#25a36f", #( 37, 163, 111)
"tealish" : "#24bca8", #( 36, 188, 168)
"tealish green" : "#0cdc73", #( 12, 220, 115)
"terra cotta" : "#c9643b", #(201, 100, 59)
"terracota" : "#cb6843", #(203, 104, 67)
"terracotta" : "#ca6641", #(202, 102, 65)
"tiffany blue" : "#7bf2da", #(123, 242, 218)
"tomato red" : "#ec2d01", #(236, 45, 1)
"topaz" : "#13bbaf", #( 19, 187, 175)
"toupe" : "#c7ac7d", #(199, 172, 125)
"toxic green" : "#61de2a", #( 97, 222, 42)
"tree green" : "#2a7e19", #( 42, 126, 25)
"true blue" : "#010fcc", #( 1, 15, 204)
"true green" : "#089404", #( 8, 148, 4)
"turquoise blue" : "#06b1c4", #( 6, 177, 196)
"turquoise green" : "#04f489", #( 4, 244, 137)
"turtle green" : "#75b84f", #(117, 184, 79)
"twilight" : "#4e518b", #( 78, 81, 139)
"twilight blue" : "#0a437a", #( 10, 67, 122)
"ugly blue" : "#31668a", #( 49, 102, 138)
"ugly brown" : "#7d7103", #(125, 113, 3)
"ugly green" : "#7a9703", #(122, 151, 3)
"ugly pink" : "#cd7584", #(205, 117, 132)
"ugly purple" : "#a442a0", #(164, 66, 160)
"ugly yellow" : "#d0c101", #(208, 193, 1)
"ultramarine" : "#2000b1", #( 32, 0, 177)
"ultramarine blue" : "#1805db", #( 24, 5, 219)
"umber" : "#b26400", #(178, 100, 0)
"velvet" : "#750851", #(117, 8, 81)
"vermillion" : "#f4320c", #(244, 50, 12)
"very dark blue" : "#000133", #( 0, 1, 51)
"very dark brown" : "#1d0200", #( 29, 2, 0)
"very dark green" : "#062e03", #( 6, 46, 3)
"very dark purple" : "#2a0134", #( 42, 1, 52)
"very light blue" : "#d5ffff", #(213, 255, 255)
"very light brown" : "#d3b683", #(211, 182, 131)
"very light green" : "#d1ffbd", #(209, 255, 189)
"very light pink" : "#fff4f2", #(255, 244, 242)
"very light purple" : "#f6cefc", #(246, 206, 252)
"very pale blue" : "#d6fffe", #(214, 255, 254)
"very pale green" : "#cffdbc", #(207, 253, 188)
"vibrant blue" : "#0339f8", #( 3, 57, 248)
"vibrant green" : "#0add08", #( 10, 221, 8)
"vibrant purple" : "#ad03de", #(173, 3, 222)
"violet blue" : "#510ac9", #( 81, 10, 201)
"violet pink" : "#fb5ffc", #(251, 95, 252)
"violet red" : "#a50055", #(165, 0, 85)
"viridian" : "#1e9167", #( 30, 145, 103)
"vivid blue" : "#152eff", #( 21, 46, 255)
"vivid green" : "#2fef10", #( 47, 239, 16)
"vivid purple" : "#9900fa", #(153, 0, 250)
"vomit" : "#a2a415", #(162, 164, 21)
"vomit green" : "#89a203", #(137, 162, 3)
"vomit yellow" : "#c7c10c", #(199, 193, 12)
"warm blue" : "#4b57db", #( 75, 87, 219)
"warm brown" : "#964e02", #(150, 78, 2)
"warm grey" : "#978a84", #(151, 138, 132)
"warm pink" : "#fb5581", #(251, 85, 129)
"warm purple" : "#952e8f", #(149, 46, 143)
"washed out green" : "#bcf5a6", #(188, 245, 166)
"water blue" : "#0e87cc", #( 14, 135, 204)
"watermelon" : "#fd4659", #(253, 70, 89)
"weird green" : "#3ae57f", #( 58, 229, 127)
"windows blue" : "#3778bf", #( 55, 120, 191)
"wine" : "#80013f", #(128, 1, 63)
"wine red" : "#7b0323", #(123, 3, 35)
"wintergreen" : "#20f986", #( 32, 249, 134)
"wisteria" : "#a87dc2", #(168, 125, 194)
"yellow brown" : "#b79400", #(183, 148, 0)
"yellow green" : "#c0fb2d", #(192, 251, 45)
"yellow ochre" : "#cb9d06", #(203, 157, 6)
"yellow orange" : "#fcb001", #(252, 176, 1)
"yellow tan" : "#ffe36e", #(255, 227, 110)
"yellow/green" : "#c8fd3d", #(200, 253, 61)
"yellowish" : "#faee66", #(250, 238, 102)
"yellowish brown" : "#9b7a01", #(155, 122, 1)
"yellowish green" : "#b0dd16", #(176, 221, 22)
"yellowish orange" : "#ffab0f", #(255, 171, 15)
"yellowish tan" : "#fcfc81", #(252, 252, 129)
"yellowy brown" : "#ae8b0c", #(174, 139, 12)
"yellowy green" : "#bff128", #(191, 241, 40)
"almond" : "#efdecd", #(239, 222, 205)
"antique brass" : "#cd9575", #(205, 149, 117)
"apricot" : "#fdd9b5", #(253, 217, 181)
"aquamarine" : "#78dbe2", #(120, 219, 226)
"asparagus" : "#87a96b", #(135, 169, 107)
"atomic tangerine" : "#ffa474", #(255, 164, 116)
"banana mania" : "#fae7b5", #(250, 231, 181)
"beaver" : "#9f8170", #(159, 129, 112)
"bittersweet" : "#fd7c6e", #(253, 124, 110)
"black" : "#000000", #( 0, 0, 0)
"blue" : "#1f75fe", #( 31, 117, 254)
"blue bell" : "#a2a2d0", #(162, 162, 208)
"blue green" : "#0d98ba", #( 13, 152, 186)
"blue violet" : "#7366bd", #(115, 102, 189)
"blush" : "#de5d83", #(222, 93, 131)
"brick red" : "#cb4154", #(203, 65, 84)
"brown" : "#b4674d", #(180, 103, 77)
"burnt orange" : "#ff7f49", #(255, 127, 73)
"burnt sienna" : "#ea7e5d", #(234, 126, 93)
"cadet blue" : "#b0b7c6", #(176, 183, 198)
"canary" : "#ffff99", #(255, 255, 153)
"caribbean green" : "#00cc99", #( 0, 204, 153)
"carnation pink" : "#ffaacc", #(255, 170, 204)
"cerise" : "#dd4492", #(221, 68, 146)
"cerulean" : "#1dacd6", #( 29, 172, 214)
"chestnut" : "#bc5d58", #(188, 93, 88)
"copper" : "#dd9475", #(221, 148, 117)
"cornflower" : "#9aceeb", #(154, 206, 235)
"cotton candy" : "#ffbcd9", #(255, 188, 217)
"dandelion" : "#fddb6d", #(253, 219, 109)
"denim" : "#2b6cc4", #( 43, 108, 196)
"desert sand" : "#efcdb8", #(239, 205, 184)
"eggplant" : "#6e5160", #(110, 81, 96)
"electric lime" : "#ceff1d", #(206, 255, 29)
"fern" : "#71bc78", #(113, 188, 120)
"forest green" : "#6dae81", #(109, 174, 129)
"fuchsia" : "#c364c5", #(195, 100, 197)
"fuzzy wuzzy" : "#cc6666", #(204, 102, 102)
"gold" : "#e7c697", #(231, 198, 151)
"goldenrod" : "#fcd975", #(252, 217, 117)
"granny smith apple" : "#a8e4a0", #(168, 228, 160)
"gray" : "#95918c", #(149, 145, 140)
"green" : "#1cac78", #( 28, 172, 120)
"green yellow" : "#f0e891", #(240, 232, 145)
"hot magenta" : "#ff1dce", #(255, 29, 206)
"inchworm" : "#b2ec5d", #(178, 236, 93)
"indigo" : "#5d76cb", #( 93, 118, 203)
"jazzberry jam" : "#ca3767", #(202, 55, 103)
"jungle green" : "#3bb08f", #( 59, 176, 143)
"laser lemon" : "#fefe22", #(254, 254, 34)
"lavender" : "#fcb4d5", #(252, 180, 213)
"macaroni and cheese" : "#ffbd88", #(255, 189, 136)
"magenta" : "#f664af", #(246, 100, 175)
"mahogany" : "#cd4a4c", #(205, 74, 76)
"manatee" : "#979aaa", #(151, 154, 170)
"mango tango" : "#ff8243", #(255, 130, 67)
"maroon" : "#c8385a", #(200, 56, 90)
"mauvelous" : "#ef98aa", #(239, 152, 170)
"melon" : "#fdbcb4", #(253, 188, 180)
"midnight blue" : "#1a4876", #( 26, 72, 118)
"mountain meadow" : "#30ba8f", #( 48, 186, 143)
"navy blue" : "#1974d2", #( 25, 116, 210)
"neon carrot" : "#ffa343", #(255, 163, 67)
"olive green" : "#bab86c", #(186, 184, 108)
"orange" : "#ff7538", #(255, 117, 56)
"orchid" : "#e6a8d7", #(230, 168, 215)
"outer space" : "#414a4c", #( 65, 74, 76)
"outrageous orange" : "#ff6e4a", #(255, 110, 74)
"pacific blue" : "#1ca9c9", #( 28, 169, 201)
"peach" : "#ffcfab", #(255, 207, 171)
"periwinkle" : "#c5d0e6", #(197, 208, 230)
"piggy pink" : "#fddde6", #(253, 221, 230)
"pine green" : "#158078", #( 21, 128, 120)
"pink flamingo" : "#fc74fd", #(252, 116, 253)
"pink sherbert" : "#f78fa7", #(247, 143, 167)
"plum" : "#8e4585", #(142, 69, 133)
"purple heart" : "#7442c8", #(116, 66, 200)
"purple mountains' majesty" : "#9d81ba", #(157, 129, 186)
"purple pizzazz" : "#fe4eda", #(254, 78, 218)
"radical red" : "#ff496c", #(255, 73, 108)
"raw sienna" : "#d68a59", #(214, 138, 89)
"razzle dazzle rose" : "#ff48d0", #(255, 72, 208)
"razzmatazz" : "#e3256b", #(227, 37, 107)
"red" : "#ee204d", #(238, 32, 77)
"red orange" : "#ff5349", #(255, 83, 73)
"red violet" : "#c0448f", #(192, 68, 143)
"robin's egg blue" : "#1fcecb", #( 31, 206, 203)
"royal purple" : "#7851a9", #(120, 81, 169)
"salmon" : "#ff9baa", #(255, 155, 170)
"scarlet" : "#fc2847", #(252, 40, 71)
"screamin' green" : "#76ff7a", #(118, 255, 122)
"sea green" : "#93dfb8", #(147, 223, 184)
"sepia" : "#a5694f", #(165, 105, 79)
"shadow" : "#8a795d", #(138, 121, 93)
"shamrock" : "#45cea2", #( 69, 206, 162)
"shocking pink" : "#fb7efd", #(251, 126, 253)
"silver" : "#cdc5c2", #(205, 197, 194)
"sky blue" : "#80daeb", #(128, 218, 235)
"spring green" : "#eceabe", #(236, 234, 190)
"sunglow" : "#ffcf48", #(255, 207, 72)
"sunset orange" : "#fd5e53", #(253, 94, 83)
"tan" : "#faa76c", #(250, 167, 108)
"tickle me pink" : "#fc89ac", #(252, 137, 172)
"timberwolf" : "#dbd7d2", #(219, 215, 210)
"tropical rain forest" : "#17806d", #( 23, 128, 109)
"tumbleweed" : "#deaa88", #(222, 170, 136)
"turquoise blue" : "#77dde7", #(119, 221, 231)
"unmellow yellow" : "#ffff66", #(255, 255, 102)
"violet (purple)" : "#926eae", #(146, 110, 174)
"violet red" : "#f75394", #(247, 83, 148)
"vivid tangerine" : "#ffa089", #(255, 160, 137)
"vivid violet" : "#8f509d", #(143, 80, 157)
"white" : "#ffffff", #(255, 255, 255)
"wild blue yonder" : "#a2add0", #(162, 173, 208)
"wild strawberry" : "#ff43a4", #(255, 67, 164)
"wild watermelon" : "#fc6c85", #(252, 108, 133)
"wisteria" : "#cda4de", #(205, 164, 222)
"yellow" : "#fce883", #(252, 232, 131)
"yellow green" : "#c5e384", #(197, 227, 132)
"yellow orange" : "#ffae42", #(255, 174, 66)
"aqua" : "#13eac9", #( 19, 234, 201)
"cyan" : "#00ffff", #( 0, 255, 255)
"grey" : "#929591", #(146, 149, 145)
"pink" : "#ff81c0", #(255, 129, 192)
"purple" : "#7e1e9c", #(126, 30, 156)
"white" : "#ffffff", #(255, 255, 255)
"yellow" : "#ffff00", #(255, 255, 0)
"magenta" : "#ff00ff", #(255, 0, 255)
"red" : "#ff0000", #(255, 0, 0)
"cyan" : "#00ffff", #( 0, 255, 255)
"green" : "#00ff00", #( 0, 255, 0)
"blue" : "#0000ff", #( 0, 0, 255)
"black" : "#000000", #( 0, 0, 0)
}
colorrgba = {k:(*v,255) for k,v in colordict.items()}
colorlist = list(set(colordict.values()))
str2tuple = lambda cstr: tuple(map(lambda x:int(x,16),(cstr[1:3],cstr[3:5],cstr[5:])))
tuple2str = lambda ctpl:"#"+hex(ctpl[0]*256**2+ctpl[1]*256+ctpl[2])[2:].rjust(6,"0").upper()
colorcount = len(colorlist)
colorcount2 = len(colordict)
randcolorname = lambda : list(colordict.keys())[randint(0,colorcount2-1)]
randcolornames = lambda value=3: sample(list(colordict.keys()), value)
randcolortuple = lambda : colorlist[randint(0,colorcount-1)]
randcolortuples = lambda value=3: sample(colorlist, value)
randcolorstring = lambda : list(colorstring.values())[randint(0,colorcount2-1)]
randcolorstrings = lambda value=3: sample(list(colorstring.values()), value)
class color:
'''
color(3-tuple: tuple) -> color # 3-tuple as (r, g, b)
color(4-tuple: tuple) -> color # 4-tuple as (r, g, b, a)
color(color_name: str) -> color # color_name as 'red','blue',...
color(color_string: str) -> color # color_string as '#rrggbb'
object for color representations.
'''
def __init__(self, r=0, g=0, b=0, a=none):
self.__alpha = (a is not none) and isinstance(a, (int, float))
if all(map(lambda r:isinstance(r, (int, float)),(r,g,b))):
self.r, self.g, self.b = map(lambda n:int(n)%256,(r,g,b))
elif isinstance(r, (tuple, list)) and len(r) in (3, 4):
self.r, self.g, self.b, self.a = *[int(c)%256 for c in r[:3]], 255
if len(r)==4: a, self.__alpha = int(r[3])%256, true
elif isinstance(r, str) and len(r)==7 and r.startswith('#'):
self.r, self.g, self.b = str2tuple(r)
elif isinstance(r, str):
if (rgb := colordict.get(r, none)) is none:
raise valueerror("invalid color name")
self.r, self.g, self.b, a = *rgb, 255
else:
raise valueerror("invalid argument for class color")
self.a = a if self.__alpha else 255
self.rgb = self.r, self.g, self.b
self.rgba = self.r, self.g, self.b, self.a
self.value = self.rgba if self.__alpha else self.rgb
self.string = tuple2str(self.value[:3])
self.decimal = tuple(map(lambda x:x/255, self.rgba))
self.name = {v:k for k,v in colordict.items()}.get(self.rgb, 'noname')
def __repr__(self):
rgba = 'rgba(' if self.__alpha else 'rgb('
return ', '.join(map(lambda x:str(x).rjust(3),self.value)).join((rgba,')'))
def randcolor(self):
'''convert the color to any random color in colordict.keys().'''
rgb = randcolortuple()
return color(*rgb, self.a) if self.__alpha else color(rgb)
def random(self):
'''convert rgb to a 3-tuple of random integer between 0 and 255.'''
rgb = randint(0,255), randint(0,255), randint(0,255)
return color(*rgb, self.a) if self.__alpha else color(rgb)
def alpha(self, a=255):
'''set alpha value of the color, or change rgb to rgba.'''
self.__init__(*self.rgb, a)
def equal(self, other):
'''compare self.rgba with another color's rgba tuple.'''
return self.rgba == other
注:其中有一行代码使用海象操作符,要求python版本3.8+,还在用更低版本请换成两行即可。
导入测试
测试一
测试二
应用测试
颜色列表 colorlist
在 pyglet 代码中,颜色使用rgb元组形式,或rgba 形式如(255,10,20,255)
示例中展示了本模块中所有的颜色:
代码:
import pyglet
from colorlib import *
window = pyglet.window.window(1200, 800, caption='色块展示')
batch = pyglet.graphics.batch()
shape = [pyglet.shapes.rectangle(25+i%50*23, 45+i//50*23, 20, 20, color=colorlist[i], batch=batch) for i in range(colorcount)]
@window.event
def on_draw():
window.clear()
batch.draw()
pyglet.app.run()
对颜色值的rgb值进行排序,只要增加一行代码:
colorlist.sort(key=lambda c:(c[0],c[1],c[2]))
颜色排序后输出:
随机颜色元组 randcolortuples
用pyglet产生随机彩色霓虹方块:
代码:
import pyglet
from colorlib import randcolortuples as ctpl
window = pyglet.window.window(800, 600, caption='色块展示')
color = ctpl(16)
batch = pyglet.graphics.batch()
shape = [pyglet.shapes.rectangle(180+i%4*120, 120+i//4*100, 100, 80, color=color[i], batch=batch) for i in range(len(color))]
@window.event
def on_draw():
window.clear()
batch.draw()
def change_color(e):
for i,c in enumerate(ctpl(16)):
shape[i].color = c
pyglet.clock.schedule_interval(change_color, 0.1)
pyglet.app.run()
随机颜色字串 randcolorstrings
在 tkinter 的代码中,颜色用字串形式,如: #010fcc
随机选择140种颜色,展示如下:
代码:
import tkinter as tk
from colorlib import *
win = tk.tk()
x,y = win.maxsize() #获取屏幕分辨率
w,h = 1200,800
winpos = f'{w}x{h}+{(x-w)//2}+{(y-h)//2}'
win.geometry(winpos)
win.resizable(false, false)
wintitle = f'桌面分辨率:{x}x{y}{" "*6}窗口大小:{w}x{h}'
win.title(wintitle)
win.update()
colortuple = randcolorstrings(140)
colorsdict = {v:k for k,v in colorstring.items()}
tv = tk.canvas(win, width = win.winfo_width(), height = win.winfo_height())
tv.pack(side = "top")
i = 0
rows = 35
w, h = 40, 10
w1, h1, h2 = 100, 28, 22
for ct in colortuple:
j = (i//rows) * 300
k = i * h2 - (i//rows) * h2 * rows
x,y = j + w, k + h
coord = x, y, j + w1, k + h1
tv.create_rectangle(coord,fill=ct)
tv.create_text((x+70,y+9),text=ct,anchor=tk.w,font=("宋体",9))
tv.create_text((x+120,y+9),text=colorsdict[ct],anchor=tk.w,font=("宋体",9))
i+=1
tv.update()
color类测试
测试一
注:.randcolor和.random方法都是返回值模式,没有修改自身属性;需要改变的话赋值后使用。
两者的区别:前者有名称是在colordict字典里随机抽取的,后者更随机大多数情况没有名称。
测试二
在pygame中使用随机变色功能:
import sys, pygame
from colorlib import color
# 初始化pygame
pygame.init()
width, height = 800, 600
window = pygame.display.set_mode((width, height))
pygame.display.set_caption("弹跳变色小球")
ball_radius = 50
ball_x, ball_y = width // 2, height // 2
ball_dx , ball_dy = 5, 5
# 随机设置小球颜色
ball_color = color().random().value
clock = pygame.time.clock()
while true:
clock.tick(120)
for event in pygame.event.get():
if event.type == pygame.quit:
pygame.quit()
sys.exit()
window.fill(color('white').value)
pygame.draw.circle(window, ball_color, (int(ball_x), int(ball_y)), ball_radius)
# 更新小球位置
ball_x += ball_dx
ball_y += ball_dy
# 检查碰撞并反弹变色
if ball_x - ball_radius < 0 or ball_x + ball_radius > width:
ball_dx = -ball_dx
ball_color = color().random().value # 随机改变小球颜色
if ball_y - ball_radius < 0 or ball_y + ball_radius > height:
ball_dy = -ball_dy
ball_color = color().random().value # 随机改变小球颜色
# 更新窗口显示
pygame.display.update()
效果:
题外话
导入colorlib会有红蓝双色显示:
在idle中的效果:
这效果学习了pygame的出场方式,不需要的话可以删除源码中最前面的三行print语句。
本文完
发表评论