Hand-written by Joseph San Nicolas, Roblox Developer
Color3
Constructors
| Name | Description |
| new(red: number,green: number,blue: number) | Returns a Color3 with the given red, green, and blue values. The parameters should be within the range of 0 to 1. |
| fromRGB(red: number,green: number,blue: number) | Returns a Color3 with the given red, green, and blue values. The parameters should be within the range of 0 to 255. |
| fromHSV(hue: number,saturation: number,value: number) | Creates a Color3 with the given hue, saturation, and value. The parameters should be within the range of 0 to 1. |
| fromHex(hex: string) | Returns a new Color3 from a six- or three-character hexadecimal format, case insensitive. A preceding hashtag (#) is ignored, if present. This function interprets the given string as a typical web hex color in the format RRGGBB or RGB (shorthand for RRGGBB). For example, #FFAA00 produces an orange color and is the same as #FA0. |
Code Snippet
local Part = Instance.new("Part", workspace)
Part.Position = Vector3.new(0,2,0)
Part.Size = Vector3.new(2,2,2)
Part.Color = Color3.new(0.219608, 1, 0.337255)
Part.Color = Color3.fromRGB(90, 255, 206)
Part.Color = Color3.fromHSV(0.0333333, 0.705882, 1)
print("#",Part.Color:ToHex())
Properties
| Name | Type | Description |
| r | number | red component of a rgb(0,0,0) sequence between 0 and 1 |
| g | number | green component of a rgb(0,0,0) sequence between 0 and 1 |
| b | number | blue component of a rgb(0,0,0) sequence between 0 and 1 |
Methods
| Name | Parameters | Returns | Description |
| Lerp(color: Color3,alpha: number):Color3 | Color: Color3, Alpha: 0 - 1 | Color3 | Returns a Color3 interpolated between two colors. The alpha value should be within the range of 0 to 1. |
| ToHSV():number,number,number | Void | Hue, Saturation, Value | Returns the hue, saturation, and value of a Color3. This function is the inverse operation of the Color3.fromHSV() constructor. |
| ToHex():string | Void | Hexa Decimal String | Converts the color to a six-character hexadecimal string representing the color in the format RRGGBB. It is not prefixed with an octothorpe (#). |
| toHSV(color: Color3):number,number,number Deprecated Deprecated | color: Color3 | Hue, Saturation, Value | Returns the hue, saturation, and value of a Color3. This function is the inverse operation of the Color3.fromHSV() constructor. |
Color Index
| Color Name | Hex | RGB (0–255) | RGB (0–1) | HSV (Standard) | HSV (0–1 Normalized) |
| White | #F2F3F3 | 242, 243, 243 | 0.950, 0.953, 0.953 | 180°, 0%, 95% | 0.500, 0.000, 0.953 |
| Grey | #A1A5A2 | 161, 165, 162 | 0.632, 0.648, 0.636 | 135°, 2%, 65% | 0.375, 0.024, 0.648 |
| Light yellow | #F9E999 | 249, 233, 153 | 0.977, 0.914, 0.600 | 50°, 39%, 98% | 0.139, 0.386, 0.977 |
| Brick yellow | #D7C59A | 215, 197, 154 | 0.844, 0.773, 0.604 | 42°, 28%, 84% | 0.117, 0.284, 0.843 |
| Light green (Mint) | #C2DAB8 | 194, 218, 184 | 0.761, 0.855, 0.722 | 102°, 16%, 85% | 0.284, 0.156, 0.855 |
| Light reddish violet | #E8BAC8 | 232, 186, 200 | 0.910, 0.730, 0.785 | 342°, 20%, 91% | 0.949, 0.198, 0.910 |
| Pastel Blue | #80BBDB | 128, 187, 219 | 0.502, 0.734, 0.859 | 201°, 42%, 86% | 0.559, 0.416, 0.859 |
| Light orange brown | #CB8442 | 203, 132, 66 | 0.797, 0.518, 0.259 | 29°, 67%, 80% | 0.080, 0.675, 0.796 |
| Nougat | #CC8E69 | 204, 142, 105 | 0.800, 0.557, 0.412 | 22°, 49%, 80% | 0.062, 0.485, 0.800 |
| Bright red | #C4281C | 196, 40, 28 | 0.769, 0.157, 0.110 | 4°, 86%, 77% | 0.012, 0.857, 0.769 |
| Med. reddish violet | #C470A0 | 196, 112, 160 | 0.769, 0.440, 0.628 | 326°, 43%, 77% | 0.905, 0.429, 0.769 |
| Bright blue | #0D69AC | 13, 105, 172 | 0.051, 0.412, 0.675 | 205°, 92%, 67% | 0.570, 0.924, 0.675 |
| Bright yellow | #F5CD30 | 245, 205, 48 | 0.961, 0.804, 0.189 | 48°, 80%, 96% | 0.133, 0.804, 0.961 |
| Earth orange | #624732 | 98, 71, 50 | 0.385, 0.279, 0.197 | 26°, 49%, 38% | 0.073, 0.490, 0.384 |
| Black | #1B2A35 | 27, 42, 53 | 0.106, 0.165, 0.208 | 205°, 49%, 21% | 0.571, 0.491, 0.208 |
| Dark grey | #6D6E6C | 109, 110, 108 | 0.428, 0.432, 0.424 | 90°, 2%, 43% | 0.250, 0.018, 0.431 |
| Dark green | #007F47 | 0, 127, 71 | 0.157, 0.499, 0.279 | 154°, 100%, 50% | 0.427, 1.000, 0.498 |
| Medium green | #A1C48C | 161, 196, 140 | 0.632, 0.769, 0.550 | 98°, 29%, 77% | 0.271, 0.286, 0.769 |
| Lig. Yellowich orange | #F3CF9B | 243, 207, 155 | 0.953, 0.812, 0.608 | 35°, 36%, 95% | 0.098, 0.362, 0.953 |
| Bright green | #4B974B | 75, 151, 75 | 0.295, 0.593, 0.295 | 120°, 50%, 59% | 0.333, 0.503, 0.592 |
| Dark orange | #A05F35 | 160, 95, 53 | 0.628, 0.373, 0.208 | 24°, 67%, 63% | 0.065, 0.669, 0.627 |
| Light bluish violet | #C1CAAE | 193, 202, 222 | 0.757, 0.793, 0.871 | 221°, 13%, 87% | 0.615, 0.131, 0.871 |
| Transparent | #ECECEC | 236, 236, 236 | 0.926, 0.926, 0.926 | 0°, 0%, 93% | 0.000, 0.000, 0.925 |
| Tr. Red | #CD544B | 205, 84, 75 | 0.804, 0.330, 0.295 | 4°, 63%, 80% | 0.012, 0.634, 0.804 |
| Tr. Lg blue | #C1DFF0 | 193, 223, 240 | 0.757, 0.875, 0.942 | 202°, 20%, 94% | 0.560, 0.196, 0.941 |
| Tr. Blue | #7BB6E8 | 123, 182, 232 | 0.483, 0.714, 0.910 | 208°, 47%, 91% | 0.576, 0.470, 0.910 |
| Tr. Yellow | #F7F18D | 247, 241, 141 | 0.969, 0.946, 0.553 | 57°, 43%, 97% | 0.157, 0.429, 0.969 |
| Light blue | #B4D2E4 | 180, 210, 228 | 0.706, 0.824, 0.895 | 203°, 21%, 89% | 0.563, 0.211, 0.894 |
| Tr. Flu. Reddish orange | #D9856C | 217, 133, 108 | 0.851, 0.522, 0.424 | 14°, 50%, 85% | 0.038, 0.502, 0.851 |
| Tr. Green | #84B68D | 132, 182, 141 | 0.518, 0.714, 0.553 | 131°, 27%, 71% | 0.363, 0.275, 0.714 |
| Tr. Flu. Green | #F8F184 | 248, 241, 132 | 0.973, 0.946, 0.518 | 56°, 47%, 97% | 0.157, 0.468, 0.973 |
| Phosph. White | #ECE8DE | 236, 232, 222 | 0.926, 0.910, 0.871 | 43°, 6%, 93% | 0.119, 0.059, 0.925 |
| Light red | #EEC4B6 | 238, 196, 182 | 0.934, 0.769, 0.714 | 15°, 24%, 93% | 0.042, 0.235, 0.933 |
| Medium red | #DA867A | 218, 134, 122 | 0.855, 0.526, 0.479 | 8°, 44%, 85% | 0.021, 0.440, 0.855 |
| Medium blue | #6E99CA | 110, 153, 202 | 0.432, 0.600, 0.793 | 212°, 46%, 79% | 0.589, 0.455, 0.792 |
| Light grey | #C7C1B7 | 199, 193, 183 | 0.781, 0.757, 0.718 | 37°, 8%, 78% | 0.104, 0.080, 0.780 |
| Bright violet | #6B327C | 107, 50, 124 | 0.420, 0.197, 0.487 | 286°, 60%, 49% | 0.795, 0.597, 0.486 |
| Br. yellowish orange | #E29B40 | 226, 155, 64 | 0.887, 0.608, 0.251 | 34°, 72%, 89% | 0.094, 0.717, 0.886 |
| Bright orange | #DA8541 | 218, 133, 65 | 0.855, 0.522, 0.255 | 27°, 70%, 85% | 0.074, 0.702, 0.855 |
| Bright bluish green | #008F9C | 0, 143, 156 | 0.000, 0.561, 0.612 | 185°, 100%, 61% | 0.514, 1.000, 0.612 |
| Earth yellow | #685C43 | 104, 92, 67 | 0.408, 0.361, 0.263 | 41°, 36%, 41% | 0.113, 0.356, 0.408 |
| Bright bluish violet | #435493 | 67, 84, 147 | 0.263, 0.330, 0.577 | 227°, 54%, 58% | 0.631, 0.544, 0.576 |
| Tr. Brown | #BFB7B1 | 191, 183, 177 | 0.750, 0.718, 0.695 | 26°, 7%, 75% | 0.071, 0.073, 0.749 |
| Medium bluish violet | #6874AC | 104, 116, 172 | 0.408, 0.455, 0.675 | 229°, 40%, 67% | 0.637, 0.395, 0.675 |
| Tr. Medi. reddish violet | #E5ADC8 | 229, 173, 200 | 0.899, 0.679, 0.785 | 331°, 25%, 90% | 0.919, 0.245, 0.898 |
| Med. yellowish green | #C7D23C | 199, 210, 60 | 0.781, 0.824, 0.236 | 64°, 71%, 82% | 0.178, 0.714, 0.824 |
| Med. bluish green | #55A5AF | 85, 165, 175 | 0.334, 0.648, 0.687 | 187°, 51%, 69% | 0.519, 0.514, 0.686 |
| Light bluish green | #B7D7D5 | 183, 215, 213 | 0.718, 0.844, 0.836 | 176°, 15%, 84% | 0.490, 0.149, 0.843 |
| Br. yellowish green | #A4BD47 | 164, 189, 71 | 0.644, 0.742, 0.279 | 73°, 62%, 74% | 0.203, 0.624, 0.741 |
| Lig. yellowish green | #D9E4A7 | 217, 228, 167 | 0.851, 0.895, 0.655 | 71°, 27%, 89% | 0.197, 0.268, 0.894 |
| Med. yellowish orange | #E7AC58 | 231, 172, 88 | 0.906, 0.675, 0.346 | 35°, 62%, 91% | 0.098, 0.619, 0.906 |
| Br. reddish orange | #D36F4C | 211, 111, 76 | 0.828, 0.436, 0.299 | 16°, 64%, 83% | 0.043, 0.640, 0.827 |
| Bright reddish violet | #923978 | 146, 57, 120 | 0.573, 0.224, 0.471 | 318°, 61%, 57% | 0.883, 0.610, 0.573 |
| Light orange | #EAB892 | 234, 184, 146 | 0.918, 0.722, 0.573 | 26°, 38%, 92% | 0.072, 0.376, 0.918 |
| Tr. Bright bluish violet | #A5A5CB | 165, 165, 203 | 0.648, 0.648, 0.797 | 240°, 19%, 80% | 0.667, 0.187, 0.796 |
| Gold | #DCBC81 | 220, 188, 129 | 0.863, 0.738, 0.506 | 39°, 41%, 86% | 0.108, 0.414, 0.863 |
| Dark nougat | #AE7A59 | 174, 122, 89 | 0.683, 0.479, 0.350 | 23°, 49%, 68% | 0.065, 0.489, 0.682 |
| Silver | #9CA3A8 | 156, 163, 168 | 0.612, 0.640, 0.659 | 205°, 7%, 66% | 0.569, 0.071, 0.659 |
| Neon orange | #D5733D | 213, 115, 61 | 0.836, 0.451, 0.240 | 21°, 71%, 84% | 0.059, 0.714, 0.835 |
| Neon green | #D8DD56 | 216, 221, 86 | 0.848, 0.867, 0.338 | 62°, 61%, 87% | 0.173, 0.611, 0.867 |
| Sand blue | #74869D | 116, 134, 157 | 0.455, 0.526, 0.616 | 214°, 26%, 62% | 0.594, 0.261, 0.616 |
| Sand violet | #877C90 | 135, 124, 144 | 0.530, 0.487, 0.565 | 273°, 14%, 56% | 0.758, 0.139, 0.565 |
| Medium orange | #E09864 | 224, 152, 100 | 0.879, 0.597, 0.393 | 25°, 55%, 88% | 0.070, 0.554, 0.878 |
| Sand yellow | #958A73 | 149, 138, 115 | 0.585, 0.542, 0.451 | 41°, 23%, 58% | 0.113, 0.228, 0.584 |
| Earth blue | #203A56 | 32, 58, 86 | 0.126, 0.228, 0.338 | 211°, 63%, 34% | 0.586, 0.628, 0.337 |
| Earth green | #27462D | 39, 70, 45 | 0.153, 0.275, 0.177 | 132°, 44%, 27% | 0.366, 0.443, 0.275 |
| Tr. Flu. Blue | #CFE2F7 | 207, 226, 247 | 0.812, 0.887, 0.969 | 212°, 16%, 97% | 0.588, 0.162, 0.969 |
| Sand blue metallic | #7988A1 | 121, 136, 161 | 0.475, 0.534, 0.632 | 218°, 25%, 63% | 0.604, 0.248, 0.631 |
| Sand violet metallic | #958EA3 | 149, 142, 163 | 0.585, 0.557, 0.640 | 260°, 13%, 64% | 0.722, 0.129, 0.639 |
| Sand yellow metallic | #938767 | 147, 135, 103 | 0.577, 0.530, 0.404 | 44°, 30%, 58% | 0.121, 0.299, 0.576 |
| Dark grey metallic | #575857 | 87, 88, 87 | 0.342, 0.346, 0.342 | 120°, 1%, 35% | 0.333, 0.011, 0.345 |
| Black metallic | #161D32 | 22, 29, 50 | 0.087, 0.114, 0.197 | 225°, 56%, 20% | 0.625, 0.560, 0.196 |
| Light grey metallic | #ABADAC | 171, 173, 172 | 0.671, 0.679, 0.675 | 150°, 1%, 68% | 0.417, 0.012, 0.678 |
| Sand green | #789082 | 120, 144, 130 | 0.471, 0.565, 0.510 | 145°, 17%, 56% | 0.403, 0.167, 0.565 |
| Sand red | #957977 | 149, 121, 119 | 0.585, 0.475, 0.467 | 4°, 20%, 58% | 0.011, 0.201, 0.584 |
| Dark red | #7B2E2F | 123, 46, 47 | 0.483, 0.181, 0.185 | 359°, 63%, 48% | 0.998, 0.626, 0.482 |
| Tr. Flu. Yellow | #FFF67B | 255, 246, 123 | 1.000, 0.965, 0.483 | 56°, 52%, 100% | 0.155, 0.518, 1.000 |
| Tr. Flu. Red | #E1A4C2 | 225, 164, 194 | 0.883, 0.644, 0.761 | 331°, 27%, 88% | 0.918, 0.271, 0.882 |
| Gun metallic | #756C62 | 117, 108, 98 | 0.459, 0.424, 0.385 | 32°, 16%, 46% | 0.088, 0.162, 0.459 |
| Red flip/flop | #97695B | 151, 105, 91 | 0.593, 0.412, 0.357 | 14°, 40%, 59% | 0.039, 0.397, 0.592 |
| Yellow flip/flop | #B48455 | 180, 132, 85 | 0.706, 0.518, 0.334 | 30°, 53%, 71% | 0.082, 0.528, 0.706 |
| Silver flip/flop | #898788 | 137, 135, 136 | 0.538, 0.530, 0.534 | 330°, 1%, 54% | 0.917, 0.015, 0.537 |
| Curry | #D7A94B | 215, 169, 75 | 0.844, 0.663, 0.295 | 40°, 65%, 84% | 0.112, 0.651, 0.843 |
| Fire Yellow | #F9D62E | 249, 214, 46 | 0.977, 0.840, 0.181 | 50°, 82%, 98% | 0.138, 0.815, 0.976 |
| Flame yellowish orange | #E8AB2D | 232, 171, 45 | 0.910, 0.671, 0.177 | 40°, 81%, 91% | 0.112, 0.806, 0.910 |
| Reddish brown | #694028 | 105, 64, 40 | 0.412, 0.251, 0.157 | 22°, 62%, 41% | 0.062, 0.619, 0.412 |
| Flame reddish orange | #CF6024 | 207, 96, 36 | 0.812, 0.377, 0.142 | 21°, 83%, 81% | 0.058, 0.826, 0.812 |
| Medium stone grey | #A3A2A5 | 163, 162, 165 | 0.640, 0.636, 0.648 | 260°, 2%, 65% | 0.722, 0.018, 0.647 |
| Royal blue | #4667A4 | 70, 103, 164 | 0.275, 0.404, 0.644 | 219°, 57%, 64% | 0.608, 0.573, 0.643 |
| Dark Royal blue | #23478B | 35, 71, 139 | 0.138, 0.279, 0.546 | 219°, 75%, 55% | 0.609, 0.748, 0.545 |
| Bright reddish lilac | #8E4285 | 142, 66, 133 | 0.557, 0.259, 0.522 | 307°, 54%, 56% | 0.853, 0.535, 0.557 |
| Dark stone grey | #635F62 | 99, 95, 98 | 0.389, 0.373, 0.385 | 315°, 4%, 39% | 0.875, 0.040, 0.388 |
| Lemon metalic | #828A5D | 130, 138, 93 | 0.510, 0.542, 0.365 | 71°, 33%, 54% | 0.196, 0.326, 0.541 |
| Light stone grey | #E5E4DF | 229, 228, 223 | 0.899, 0.895, 0.875 | 50°, 3%, 90% | 0.139, 0.026, 0.898 |
| Dark Curry | #B08E44 | 176, 142, 68 | 0.691, 0.557, 0.267 | 41°, 61%, 69% | 0.114, 0.614, 0.690 |
| Faded green | #709578 | 112, 149, 120 | 0.440, 0.585, 0.471 | 133°, 25%, 58% | 0.369, 0.248, 0.584 |
| Turquoise | #79B5B5 | 121, 181, 181 | 0.475, 0.710, 0.710 | 180°, 33%, 71% | 0.500, 0.331, 0.710 |
| Light Royal blue | #9FC3E9 | 159, 195, 233 | 0.624, 0.765, 0.914 | 211°, 32%, 91% | 0.586, 0.318, 0.914 |
| Medium Royal blue | #6C81B7 | 108, 129, 183 | 0.424, 0.506, 0.718 | 223°, 41%, 72% | 0.620, 0.410, 0.718 |
| Rust | #904C2A | 144, 76, 42 | 0.565, 0.299, 0.165 | 20°, 71%, 56% | 0.056, 0.708, 0.565 |
| Brown | #7C5C46 | 124, 92, 70 | 0.487, 0.361, 0.275 | 24°, 44%, 49% | 0.068, 0.435, 0.486 |
| Reddish lilac | #96709F | 150, 112, 159 | 0.589, 0.440, 0.624 | 289°, 30%, 62% | 0.801, 0.296, 0.624 |
| Lilac | #6B629B | 107, 98, 155 | 0.420, 0.385, 0.608 | 249°, 37%, 61% | 0.693, 0.368, 0.608 |
| Light lilac | #A7A9CE | 167, 169, 206 | 0.655, 0.663, 0.808 | 237°, 19%, 81% | 0.658, 0.189, 0.808 |
| Bright purple | #CD6298 | 205, 98, 152 | 0.804, 0.385, 0.597 | 330°, 52%, 80% | 0.916, 0.522, 0.804 |
| Light purple | #E4ADC8 | 228, 173, 200 | 0.895, 0.679, 0.785 | 331°, 24%, 89% | 0.918, 0.241, 0.894 |
| Light pink | #DC9095 | 220, 144, 149 | 0.863, 0.565, 0.585 | 356°, 35%, 86% | 0.989, 0.345, 0.863 |
| Light brick yellow | #F0D5A0 | 240, 213, 160 | 0.942, 0.836, 0.628 | 40°, 33%, 94% | 0.110, 0.333, 0.941 |
| Warm yellowish orange | #EBB87F | 235, 184, 127 | 0.922, 0.722, 0.499 | 32°, 46%, 92% | 0.088, 0.460, 0.922 |
| Cool yellow | #FDEA8D | 253, 234, 141 | 0.993, 0.918, 0.553 | 50°, 44%, 99% | 0.138, 0.443, 0.992 |
| Dove blue | #7DBBDD | 125, 187, 221 | 0.491, 0.734, 0.867 | 201°, 43%, 87% | 0.559, 0.434, 0.867 |
| Medium lilac | #342B75 | 52, 43, 117 | 0.204, 0.169, 0.459 | 247°, 63%, 46% | 0.687, 0.632, 0.459 |
| Slime green | #506D54 | 80, 109, 84 | 0.314, 0.428, 0.330 | 128°, 27%, 43% | 0.356, 0.266, 0.427 |
| Smoky grey | #5B5D69 | 91, 93, 105 | 0.357, 0.365, 0.412 | 231°, 13%, 41% | 0.643, 0.133, 0.412 |
| Dark blue | #0010B0 | 0, 16, 176 | 0.000, 0.063, 0.691 | 235°, 100%, 69% | 0.652, 1.000, 0.690 |
| Parsley green | #2C651D | 44, 101, 29 | 0.173, 0.397, 0.114 | 108°, 71%, 40% | 0.298, 0.713, 0.396 |
| Steel blue | #527CAE | 82, 124, 174 | 0.322, 0.487, 0.683 | 213°, 53%, 68% | 0.591, 0.529, 0.682 |
| Storm blue | #335882 | 51, 88, 130 | 0.200, 0.346, 0.510 | 212°, 61%, 51% | 0.589, 0.608, 0.510 |
| Lapis | #102ADC | 16, 42, 220 | 0.063, 0.165, 0.863 | 232°, 93%, 86% | 0.645, 0.927, 0.863 |
| Dark indigo | #3D1585 | 61, 21, 133 | 0.240, 0.083, 0.522 | 261°, 84%, 52% | 0.726, 0.842, 0.522 |
| Sea green | #348E40 | 52, 142, 64 | 0.204, 0.557, 0.251 | 128°, 63%, 56% | 0.356, 0.634, 0.557 |
| Shamrock | #5B9A4C | 91, 154, 76 | 0.357, 0.604, 0.299 | 108°, 51%, 60% | 0.301, 0.506, 0.604 |
| Fossil | #9FA1AC | 159, 161, 172 | 0.624, 0.632, 0.675 | 231°, 8%, 67% | 0.641, 0.076, 0.675 |
| Mulberry | #592259 | 89, 34, 89 | 0.350, 0.134, 0.350 | 300°, 62%, 35% | 0.833, 0.618, 0.349 |
| Forest green | #1F801D | 31, 128, 29 | 0.122, 0.502, 0.114 | 119°, 77%, 50% | 0.330, 0.773, 0.502 |
| Cadet blue | #9FADC0 | 159, 173, 192 | 0.624, 0.679, 0.753 | 215°, 17%, 75% | 0.596, 0.172, 0.753 |
| Electric blue | #0989CF | 9, 137, 207 | 0.036, 0.538, 0.812 | 201°, 96%, 81% | 0.559, 0.957, 0.812 |
| Eggplant | #7B007B | 123, 0, 123 | 0.483, 0.000, 0.483 | 300°, 100%, 48% | 0.833, 1.000, 0.482 |
| Moss | #7C9C6B | 124, 156, 107 | 0.487, 0.612, 0.420 | 99°, 31%, 61% | 0.276, 0.314, 0.612 |
| Artichoke | #8AAB85 | 138, 171, 133 | 0.542, 0.671, 0.522 | 112°, 22%, 67% | 0.311, 0.222, 0.671 |
| Sage green | #B9C4B1 | 185, 196, 177 | 0.726, 0.769, 0.695 | 95°, 10%, 77% | 0.263, 0.097, 0.769 |
| Ghost grey | #CACBD1 | 202, 203, 209 | 0.793, 0.797, 0.820 | 231°, 3%, 82% | 0.643, 0.033, 0.820 |
| Lilac | #A75E9B | 167, 94, 155 | 0.655, 0.369, 0.608 | 310°, 44%, 65% | 0.861, 0.437, 0.655 |
| Plum | #7B2F7B | 123, 47, 123 | 0.483, 0.185, 0.483 | 300°, 62%, 48% | 0.833, 0.618, 0.482 |
| Olivine | #94BE81 | 148, 190, 129 | 0.581, 0.746, 0.506 | 101°, 32%, 75% | 0.281, 0.321, 0.745 |
| Laurel green | #A8BD99 | 168, 189, 153 | 0.659, 0.742, 0.600 | 95°, 19%, 74% | 0.264, 0.190, 0.741 |
| Quill grey | #DFDFDE | 223, 223, 222 | 0.875, 0.875, 0.871 | 60°, 0%, 87% | 0.167, 0.004, 0.875 |
| Crimson | #970000 | 151, 0, 0 | 0.593, 0.000, 0.000 | 0°, 100%, 59% | 0.000, 1.000, 0.592 |
| Mint | #B1E5A6 | 177, 229, 166 | 0.695, 0.899, 0.651 | 109°, 28%, 90% | 0.304, 0.275, 0.898 |
| Baby blue | #98C2DB | 152, 194, 219 | 0.597, 0.761, 0.859 | 202°, 31%, 86% | 0.562, 0.306, 0.859 |
| Carnation pink | #FF98DC | 255, 152, 220 | 1.000, 0.597, 0.863 | 320°, 40%, 100% | 0.889, 0.404, 1.000 |
| Persimmon | #FF5959 | 255, 89, 89 | 1.000, 0.350, 0.350 | 0°, 65%, 100% | 0.000, 0.651, 1.000 |
| Maroon | #750000 | 117, 0, 0 | 0.459, 0.000, 0.000 | 0°, 100%, 46% | 0.000, 1.000, 0.459 |
| Gold | #EFB838 | 239, 184, 56 | 0.938, 0.722, 0.220 | 42°, 77%, 94% | 0.117, 0.766, 0.937 |
| Daisy orange | #F8D96D | 248, 217, 109 | 0.973, 0.851, 0.428 | 47°, 56%, 97% | 0.129, 0.560, 0.973 |
| Pearl | #E7E7EC | 231, 231, 236 | 0.906, 0.906, 0.926 | 240°, 2%, 93% | 0.667, 0.021, 0.925 |
| Fog | #C7D4E4 | 199, 212, 228 | 0.781, 0.832, 0.895 | 213°, 13%, 89% | 0.592, 0.127, 0.894 |
| Salmon | #FF9494 | 255, 148, 148 | 1.000, 0.581, 0.581 | 0°, 42%, 100% | 0.000, 0.420, 1.000 |
| Terra Cotta | #BE6862 | 190, 104, 98 | 0.746, 0.408, 0.385 | 4°, 48%, 75% | 0.011, 0.484, 0.745 |
| Cocoa | #562424 | 86, 36, 36 | 0.338, 0.142, 0.142 | 0°, 58%, 34% | 0.000, 0.581, 0.337 |
| Wheat | #F1E7C7 | 241, 231, 199 | 0.946, 0.906, 0.781 | 46°, 17%, 95% | 0.127, 0.174, 0.945 |
| Buttermilk | #FEF3BB | 254, 243, 187 | 0.997, 0.953, 0.734 | 50°, 26%, 100% | 0.139, 0.264, 0.996 |
| Mauve | #E0B2D0 | 224, 178, 208 | 0.879, 0.699, 0.816 | 321°, 21%, 88% | 0.891, 0.205, 0.878 |
| Sunrise | #D490BD | 212, 144, 189 | 0.832, 0.565, 0.742 | 320°, 32%, 83% | 0.889, 0.321, 0.831 |
| Tawny | #965555 | 150, 85, 85 | 0.589, 0.334, 0.334 | 0°, 43%, 59% | 0.000, 0.433, 0.588 |
| Rust | #8F4C2A | 143, 76, 42 | 0.561, 0.299, 0.165 | 20°, 71%, 56% | 0.056, 0.706, 0.561 |
| Cashmere | #D3BE96 | 211, 190, 150 | 0.828, 0.746, 0.589 | 39°, 29%, 83% | 0.109, 0.289, 0.827 |
| Khaki | #E2DCBC | 226, 220, 188 | 0.887, 0.863, 0.738 | 51°, 17%, 89% | 0.140, 0.168, 0.886 |
| Lily white | #EDEAEA | 237, 234, 234 | 0.930, 0.918, 0.918 | 0°, 1%, 93% | 0.000, 0.013, 0.929 |
| Seashell | #E9DADA | 233, 218, 218 | 0.914, 0.855, 0.855 | 0°, 6%, 91% | 0.000, 0.064, 0.914 |
| Burgundy | #883E3E | 136, 62, 62 | 0.534, 0.244, 0.244 | 0°, 54%, 53% | 0.000, 0.544, 0.533 |
| Cork | #BC9B5D | 188, 155, 93 | 0.738, 0.608, 0.365 | 39°, 51%, 74% | 0.109, 0.505, 0.737 |
| Burlap | #C7AC78 | 199, 172, 120 | 0.781, 0.675, 0.471 | 39°, 40%, 78% | 0.110, 0.397, 0.780 |
| Beige | #CABFB7 | 202, 191, 163 | 0.793, 0.750, 0.640 | 43°, 19%, 79% | 0.120, 0.193, 0.792 |
| Oyster | #BBB3B2 | 187, 179, 178 | 0.734, 0.702, 0.699 | 7°, 5%, 73% | 0.019, 0.048, 0.733 |
| Pine Cone | #6C584B | 108, 88, 75 | 0.424, 0.346, 0.295 | 24°, 31%, 42% | 0.066, 0.306, 0.424 |
| Fawn brown | #A0844F | 160, 132, 79 | 0.628, 0.518, 0.310 | 39°, 51%, 63% | 0.109, 0.506, 0.627 |
| Hurricane grey | #958988 | 149, 137, 136 | 0.585, 0.538, 0.534 | 5°, 9%, 58% | 0.013, 0.087, 0.584 |
| Cloudy grey | #ABA89E | 171, 168, 158 | 0.671, 0.659, 0.620 | 46°, 8%, 67% | 0.128, 0.076, 0.671 |
| Linen | #AF9483 | 175, 148, 131 | 0.687, 0.581, 0.514 | 23°, 25%, 69% | 0.064, 0.251, 0.686 |
| Copper | #966766 | 150, 103, 102 | 0.589, 0.404, 0.400 | 1°, 32%, 59% | 0.003, 0.320, 0.588 |
| Medium brown | #564236 | 86, 66, 54 | 0.338, 0.259, 0.212 | 23°, 37%, 34% | 0.063, 0.372, 0.337 |
| Bronze | #7E683F | 126, 104, 63 | 0.495, 0.408, 0.248 | 39°, 50%, 49% | 0.108, 0.500, 0.494 |
| Flint | #69665C | 105, 102, 92 | 0.412, 0.400, 0.361 | 46°, 12%, 41% | 0.128, 0.124, 0.412 |
| Dark taupe | #5A4C42 | 90, 76, 66 | 0.353, 0.299, 0.259 | 25°, 27%, 35% | 0.069, 0.267, 0.353 |
| Burnt Sienna | #6A3909 | 106, 57, 9 | 0.416, 0.224, 0.036 | 30°, 92%, 42% | 0.082, 0.915, 0.416 |
| Institutional white | #F8F8F8 | 248, 248, 248 | 0.973, 0.973, 0.973 | 0°, 0%, 97% | 0.000, 0.000, 0.973 |
| Mid gray | #CDCDCD | 205, 205, 205 | 0.804, 0.804, 0.804 | 0°, 0%, 80% | 0.000, 0.000, 0.804 |
| Really black | #111111 | 17, 17, 17 | 0.067, 0.067, 0.067 | 0°, 0%, 7% | 0.000, 0.000, 0.067 |
| Really red | #FF0000 | 255, 0, 0 | 1.000, 0.000, 0.000 | 0°, 100%, 100% | 0.000, 1.000, 1.000 |
| Deep orange | #FFB000 | 255, 176, 0 | 1.000, 0.691, 0.000 | 41°, 100%, 100% | 0.115, 1.000, 1.000 |
| Alder | #B480FF | 180, 128, 255 | 0.706, 0.502, 1.000 | 265°, 50%, 100% | 0.735, 0.498, 1.000 |
| Dusty Rose | #A34B4B | 163, 75, 75 | 0.640, 0.295, 0.295 | 0°, 54%, 64% | 0.000, 0.540, 0.639 |
| Olive | #C1BE42 | 193, 190, 66 | 0.757, 0.746, 0.259 | 59°, 66%, 76% | 0.163, 0.658, 0.757 |
| New Yeller | #FFFF00 | 255, 255, 0 | 1.000, 1.000, 0.000 | 60°, 100%, 100% | 0.167, 1.000, 1.000 |
| Really blue | #0000FF | 0, 0, 255 | 0.000, 0.000, 1.000 | 240°, 100%, 100% | 0.667, 1.000, 1.000 |
| Navy blue | #002060 | 0, 32, 96 | 0.000, 0.126, 0.377 | 220°, 100%, 38% | 0.611, 1.000, 0.376 |
| Deep blue | #2154B9 | 33, 84, 185 | 0.130, 0.330, 0.726 | 220°, 82%, 73% | 0.611, 0.822, 0.725 |
| Cyan | #04AFEC | 4, 175, 236 | 0.016, 0.687, 0.926 | 196°, 98%, 93% | 0.544, 0.983, 0.925 |
| CGA brown | #AA5500 | 170, 85, 0 | 0.667, 0.334, 0.000 | 30°, 100%, 67% | 0.083, 1.000, 0.667 |
| Magenta | #AA00AA | 170, 0, 170 | 0.667, 0.000, 0.667 | 300°, 100%, 67% | 0.833, 1.000, 0.667 |
| Pink | #FF66CC | 255, 102, 204 | 1.000, 0.400, 0.800 | 320°, 60%, 100% | 0.889, 0.600, 1.000 |
| Deep orange | #FFAF00 | 255, 175, 0 | 1.000, 0.687, 0.000 | 41°, 100%, 100% | 0.114, 1.000, 1.000 |
| Teal | #12EED4 | 18, 238, 212 | 0.071, 0.934, 0.832 | 173°, 92%, 93% | 0.480, 0.924, 0.933 |
| Toothpaste | #00FFFF | 0, 255, 255 | 0.000, 1.000, 1.000 | 180°, 100%, 100% | 0.500, 1.000, 1.000 |
| Lime green | #00FF00 | 0, 255, 0 | 0.000, 1.000, 0.000 | 120°, 100%, 100% | 0.333, 1.000, 1.000 |
| Camo | #3A7D15 | 58, 125, 21 | 0.228, 0.491, 0.083 | 99°, 83%, 49% | 0.274, 0.832, 0.490 |
| Grime | #7F8E64 | 127, 142, 100 | 0.499, 0.557, 0.393 | 81°, 30%, 56% | 0.226, 0.296, 0.557 |
| Lavender | #8C5B9F | 140, 91, 159 | 0.550, 0.357, 0.624 | 283°, 43%, 62% | 0.787, 0.428, 0.624 |
| Pastel light blue | #AFDDFF | 175, 221, 255 | 0.687, 0.867, 1.000 | 205°, 31%, 100% | 0.571, 0.314, 1.000 |
| Pastel orange | #FFC9C9 | 255, 201, 201 | 1.000, 0.789, 0.789 | 0°, 21%, 100% | 0.000, 0.212, 1.000 |
| Pastel violet | #B1A7FF | 177, 167, 255 | 0.695, 0.655, 1.000 | 247°, 35%, 100% | 0.686, 0.345, 1.000 |
| Pastel blue-green | #9FF3E9 | 159, 243, 233 | 0.624, 0.953, 0.914 | 173°, 35%, 95% | 0.480, 0.346, 0.953 |
| Pastel green | #CCFFCC | 204, 255, 204 | 0.800, 1.000, 0.800 | 120°, 20%, 100% | 0.333, 0.200, 1.000 |
| Pastel yellow | #FFFFCC | 255, 255, 204 | 1.000, 1.000, 0.800 | 60°, 20%, 100% | 0.167, 0.200, 1.000 |
| Pastel brown | #FFCC99 | 255, 204, 153 | 1.000, 0.800, 0.600 | 30°, 40%, 100% | 0.083, 0.400, 1.000 |
| Royal purple | #6225D1 | 98, 37, 209 | 0.385, 0.146, 0.820 | 261°, 82%, 82% | 0.726, 0.823, 0.820 |
| Hot pink | #FF00BF | 255, 0, 191 | 1.000, 0.000, 0.750 | 315°, 100%, 100% | 0.875, 1.000, 1.000 |