LogoGwool Litestep Mirror

Contents

Specifying a color

A color can be either a named color, a color value, or a function applied to another color type.

Some sample color specifications: (prefix)Color Red (prefix)Color HSLA(340, 99, 97, 200) (prefix)Color Mix(SetAlpha(Spin(DWMColor, 60), 128), rgb(0, 0, 255), 0.9)

Red, Green, Blue, Alpha

 * #AARRGGBB
 * #RRGGBB, Sets the alpha to 255 (0xFF)
 * #ARGB -- #ABCD == #AABBCCDD
 * #RGB -- Sets the alpha to 255 (0xFF)
 * RGB(R,G,B)
 * RGBA(R,G,B,A)

|| *Parameter* || *Range* || || Alpha || [0, 255] || || Red || [0, 255] || || Green || [0, 255] || || Blue || [0, 255] ||

Hue, Saturation, Lightness

There are 3 ways to specify a color using Hue, Saturation, and Lightness.

 * HSL(H,S,L)
 * HSLA(H,S,L,A)

|| *Parameter* || *Range* || || Alpha || [0, 255] || || Hue || [0, 360) || || Saturation || [0, 100] || || Lightness || [0, 100] ||

Hue, Saturation, Value

 * HSV(H,S,V)
 * HSVA(H,S,V,A)

|| *Parameter* || *Range* || || Alpha || [0, 255] || || Hue || [0, 360) || || Saturation || [0, 100] || || Value || [0, 100] ||

DWMColor

 * DWMColor -- The color currently used by the Desktop Window Manager, same color as the window borders.


Color functions

The functions take a color, and return a modified color.

`Lighten`

Lighten(color, amount) Increases the lightness of the color by the specified amount.

`Darken`

Darken(color, amount) Reduces the lightness of the color by the specified amount.

`SetLightness`

SetLightness(color, amount) Sets the lightness of the color to the specified amount.

`Saturate`

Saturate(color, amount) Increases the saturation of the color by the specified amount.

`Desaturate`

Desaturate(color, amount) Reduces the saturation of the color by the specified amount.

`SetSaturation`

SetSaturation(color, amount) Sets the saturation of the color to the specified amount.

`FadeIn`

FadeIn(color, amount) Increases the opacity of the color by the specified amount.

`FadeOut`

FadeOut(color, amount) Reduces the opacity of the color by the specified amount.

`SetAlpha`

SetAlpha(color, amount) Sets the opacity of the color to the specified amount.

`Spin`

Spin(color, degrees) Rotates the HUE of the color by the specified number of degrees.

`SetHue`

SetHue(color, value) Sets the hue of the color to the specified value.

`Mix`

Mix(color1, color2, weight) Mixes the two colors together, giving color1 the specified weight. Weight ? [0, 1]

It essentially blends each individual AHSL component according to this formula: color1*weight + color2*(1 - weight)

Named colors

The named colors match the W3C CSS specification.

|| Name || `_____ Color of the color _____` || #ARGB || Alpha || RGB || HSL || HSV || || `AliceBlue` || http://alurcard2.net/color.svg?color=240,248,255,1.00 || #FFF0F8FF || 255 || 240, 248, 255 || 208, 99, 97 || 208, 5, 100 || || `AntiqueWhite` || http://alurcard2.net/color.svg?color=250,235,215,1.00 || #FFFAEBD7 || 255 || 250, 235, 215 || 34, 77, 91 || 34, 13, 98 || || `Aqua` || http://alurcard2.net/color.svg?color=0,255,255,1.00 || #FF00FFFF || 255 || 0, 255, 255 || 180, 100, 50 || 180, 100, 100 || || `Aquamarine` || http://alurcard2.net/color.svg?color=127,255,212,1.00 || #FF7FFFD4 || 255 || 127, 255, 212 || 159, 100, 74 || 159, 50, 100 || || `Azure` || http://alurcard2.net/color.svg?color=240,255,255,1.00 || #FFF0FFFF || 255 || 240, 255, 255 || 180, 99, 97 || 180, 5, 100 || || `Beige` || http://alurcard2.net/color.svg?color=245,245,220,1.00 || #FFF5F5DC || 255 || 245, 245, 220 || 60, 55, 91 || 60, 10, 96 || || `Bisque` || http://alurcard2.net/color.svg?color=255,228,196,1.00 || #FFFFE4C4 || 255 || 255, 228, 196 || 32, 99, 88 || 32, 23, 100 || || `Black` || http://alurcard2.net/color.svg?color=0,0,0,1.00 || #FF000000 || 255 || 0, 0, 0 || 0, 0, 0 || 0, 0, 0 || || `BlanchedAlmond` || http://alurcard2.net/color.svg?color=255,235,205,1.00 || #FFFFEBCD || 255 || 255, 235, 205 || 36, 100, 90 || 36, 19, 100 || || `Blue` || http://alurcard2.net/color.svg?color=0,0,255,1.00 || #FF0000FF || 255 || 0, 0, 255 || 240, 100, 50 || 240, 100, 100 || || `BlueViolet` || http://alurcard2.net/color.svg?color=138,43,226,1.00 || #FF8A2BE2 || 255 || 138, 43, 226 || 271, 75, 52 || 271, 80, 88 || || `Brown` || http://alurcard2.net/color.svg?color=165,42,42,1.00 || #FFA52A2A || 255 || 165, 42, 42 || 0, 59, 40 || 0, 74, 64 || || `BurlyWood` || http://alurcard2.net/color.svg?color=222,184,135,1.00 || #FFDEB887 || 255 || 222, 184, 135 || 33, 56, 70 || 33, 39, 87 || || `CadetBlue` || http://alurcard2.net/color.svg?color=95,158,160,1.00 || #FF5F9EA0 || 255 || 95, 158, 160 || 181, 25, 50 || 181, 40, 62 || || `Chartreuse` || http://alurcard2.net/color.svg?color=127,255,0,1.00 || #FF7FFF00 || 255 || 127, 255, 0 || 90, 100, 50 || 90, 100, 100 || || `Chocolate` || http://alurcard2.net/color.svg?color=210,105,30,1.00 || #FFD2691E || 255 || 210, 105, 30 || 25, 75, 47 || 25, 85, 82 || || `Coral` || http://alurcard2.net/color.svg?color=255,127,80,1.00 || #FFFF7F50 || 255 || 255, 127, 80 || 16, 100, 65 || 16, 68, 100 || || `CornflowerBlue` || http://alurcard2.net/color.svg?color=100,149,237,1.00 || #FF6495ED || 255 || 100, 149, 237 || 218, 79, 66 || 218, 57, 92 || || `Cornsilk` || http://alurcard2.net/color.svg?color=255,248,220,1.00 || #FFFFF8DC || 255 || 255, 248, 220 || 48, 99, 93 || 48, 13, 100 || || `Crimson` || http://alurcard2.net/color.svg?color=220,20,60,1.00 || #FFDC143C || 255 || 220, 20, 60 || 349, 83, 47 || 349, 90, 86 || || `Cyan` || http://alurcard2.net/color.svg?color=0,255,255,1.00 || #FF00FFFF || 255 || 0, 255, 255 || 180, 100, 50 || 180, 100, 100 || || `DarkBlue` || http://alurcard2.net/color.svg?color=0,0,139,1.00 || #FF00008B || 255 || 0, 0, 139 || 240, 100, 27 || 240, 100, 54 || || `DarkCyan` || http://alurcard2.net/color.svg?color=0,139,139,1.00 || #FF008B8B || 255 || 0, 139, 139 || 180, 100, 27 || 180, 100, 54 || || `DarkGoldenrod` || http://alurcard2.net/color.svg?color=184,134,11,1.00 || #FFB8860B || 255 || 184, 134, 11 || 42, 88, 38 || 42, 94, 72 || || `DarkGray` || http://alurcard2.net/color.svg?color=169,169,169,1.00 || #FFA9A9A9 || 255 || 169, 169, 169 || 0, 0, 66 || 0, 0, 66 || || `DarkGreen` || http://alurcard2.net/color.svg?color=0,100,0,1.00 || #FF006400 || 255 || 0, 100, 0 || 120, 100, 19 || 120, 100, 39 || || `DarkGrey` || http://alurcard2.net/color.svg?color=169,169,169,1.00 || #FFA9A9A9 || 255 || 169, 169, 169 || 0, 0, 66 || 0, 0, 66 || || `DarkKhaki` || http://alurcard2.net/color.svg?color=189,183,107,1.00 || #FFBDB76B || 255 || 189, 183, 107 || 55, 38, 58 || 55, 43, 74 || || `DarkMagenta` || http://alurcard2.net/color.svg?color=139,0,139,1.00 || #FF8B008B || 255 || 139, 0, 139 || 300, 100, 27 || 300, 100, 54 || || `DarkOliveGreen` || http://alurcard2.net/color.svg?color=85,107,47,1.00 || #FF556B2F || 255 || 85, 107, 47 || 81, 38, 30 || 81, 56, 41 || || `DarkOrange` || http://alurcard2.net/color.svg?color=255,140,0,1.00 || #FFFF8C00 || 255 || 255, 140, 0 || 32, 100, 50 || 32, 100, 100 || || `DarkOrchid` || http://alurcard2.net/color.svg?color=153,50,204,1.00 || #FF9932CC || 255 || 153, 50, 204 || 280, 60, 49 || 280, 75, 80 || || `DarkRed` || http://alurcard2.net/color.svg?color=139,0,0,1.00 || #FF8B0000 || 255 || 139, 0, 0 || 0, 100, 27 || 0, 100, 54 || || `DarkSalmon` || http://alurcard2.net/color.svg?color=233,150,122,1.00 || #FFE9967A || 255 || 233, 150, 122 || 15, 71, 69 || 15, 47, 91 || || `DarkSeaGreen` || http://alurcard2.net/color.svg?color=143,188,139,1.00 || #FF8FBC8B || 255 || 143, 188, 139 || 115, 26, 64 || 115, 26, 73 || || `DarkSlateBlue` || http://alurcard2.net/color.svg?color=72,61,139,1.00 || #FF483D8B || 255 || 72, 61, 139 || 248, 39, 39 || 248, 56, 54 || || `DarkSlateGray` || http://alurcard2.net/color.svg?color=47,79,79,1.00 || #FF2F4F4F || 255 || 47, 79, 79 || 180, 25, 24 || 180, 40, 30 || || `DarkSlateGrey` || http://alurcard2.net/color.svg?color=47,79,79,1.00 || #FF2F4F4F || 255 || 47, 79, 79 || 180, 25, 24 || 180, 40, 30 || || `DarkTurquoise` || http://alurcard2.net/color.svg?color=0,206,209,1.00 || #FF00CED1 || 255 || 0, 206, 209 || 180, 100, 40 || 180, 100, 81 || || `DarkViolet` || http://alurcard2.net/color.svg?color=148,0,211,1.00 || #FF9400D3 || 255 || 148, 0, 211 || 282, 100, 41 || 282, 100, 82 || || `DeepPink` || http://alurcard2.net/color.svg?color=255,20,147,1.00 || #FFFF1493 || 255 || 255, 20, 147 || 328, 100, 53 || 328, 92, 100 || || `DeepSkyBlue` || http://alurcard2.net/color.svg?color=0,191,255,1.00 || #FF00BFFF || 255 || 0, 191, 255 || 195, 100, 50 || 195, 100, 100 || || `DimGray` || http://alurcard2.net/color.svg?color=105,105,105,1.00 || #FF696969 || 255 || 105, 105, 105 || 0, 0, 41 || 0, 0, 41 || || `DimGrey` || http://alurcard2.net/color.svg?color=105,105,105,1.00 || #FF696969 || 255 || 105, 105, 105 || 0, 0, 41 || 0, 0, 41 || || `DodgerBlue` || http://alurcard2.net/color.svg?color=30,144,255,1.00 || #FF1E90FF || 255 || 30, 144, 255 || 209, 100, 55 || 209, 88, 100 || || `Firebrick` || http://alurcard2.net/color.svg?color=178,34,34,1.00 || #FFB22222 || 255 || 178, 34, 34 || 0, 67, 41 || 0, 80, 69 || || `FloralWhite` || http://alurcard2.net/color.svg?color=255,250,240,1.00 || #FFFFFAF0 || 255 || 255, 250, 240 || 40, 99, 97 || 40, 5, 100 || || `ForestGreen` || http://alurcard2.net/color.svg?color=34,139,34,1.00 || #FF228B22 || 255 || 34, 139, 34 || 120, 60, 33 || 120, 75, 54 || || `Fuchsia` || http://alurcard2.net/color.svg?color=255,0,255,1.00 || #FFFF00FF || 255 || 255, 0, 255 || 300, 100, 50 || 300, 100, 100 || || `Gainsboro` || http://alurcard2.net/color.svg?color=220,220,220,1.00 || #FFDCDCDC || 255 || 220, 220, 220 || 0, 0, 86 || 0, 0, 86 || || `GhostWhite` || http://alurcard2.net/color.svg?color=248,248,255,1.00 || #FFF8F8FF || 255 || 248, 248, 255 || 240, 99, 98 || 240, 2, 100 || || `Gold` || http://alurcard2.net/color.svg?color=255,215,0,1.00 || #FFFFD700 || 255 || 255, 215, 0 || 50, 100, 50 || 50, 100, 100 || || `Goldenrod` || http://alurcard2.net/color.svg?color=218,165,32,1.00 || #FFDAA520 || 255 || 218, 165, 32 || 42, 74, 49 || 42, 85, 85 || || `Gray` || http://alurcard2.net/color.svg?color=128,128,128,1.00 || #FF808080 || 255 || 128, 128, 128 || 0, 0, 50 || 0, 0, 50 || || `Green` || http://alurcard2.net/color.svg?color=0,128,0,1.00 || #FF008000 || 255 || 0, 128, 0 || 120, 100, 25 || 120, 100, 50 || || `GreenYellow` || http://alurcard2.net/color.svg?color=173,255,47,1.00 || #FFADFF2F || 255 || 173, 255, 47 || 83, 100, 59 || 83, 81, 100 || || `Grey` || http://alurcard2.net/color.svg?color=128,128,128,1.00 || #FF808080 || 255 || 128, 128, 128 || 0, 0, 50 || 0, 0, 50 || || `Honeydew` || http://alurcard2.net/color.svg?color=240,255,240,1.00 || #FFF0FFF0 || 255 || 240, 255, 240 || 120, 99, 97 || 120, 5, 100 || || `HotPink` || http://alurcard2.net/color.svg?color=255,105,180,1.00 || #FFFF69B4 || 255 || 255, 105, 180 || 330, 100, 70 || 330, 58, 100 || || `IndianRed` || http://alurcard2.net/color.svg?color=205,92,92,1.00 || #FFCD5C5C || 255 || 205, 92, 92 || 0, 53, 58 || 0, 55, 80 || || `Indigo` || http://alurcard2.net/color.svg?color=75,0,130,1.00 || #FF4B0082 || 255 || 75, 0, 130 || 274, 100, 25 || 274, 100, 50 || || `Ivory` || http://alurcard2.net/color.svg?color=255,255,240,1.00 || #FFFFFFF0 || 255 || 255, 255, 240 || 60, 99, 97 || 60, 5, 100 || || `Khaki` || http://alurcard2.net/color.svg?color=240,230,140,1.00 || #FFF0E68C || 255 || 240, 230, 140 || 54, 76, 74 || 54, 41, 94 || || `Lavender` || http://alurcard2.net/color.svg?color=230,230,250,1.00 || #FFE6E6FA || 255 || 230, 230, 250 || 240, 66, 94 || 240, 7, 98 || || `LavenderBlush` || http://alurcard2.net/color.svg?color=255,240,245,1.00 || #FFFFF0F5 || 255 || 255, 240, 245 || 340, 99, 97 || 340, 5, 100 || || `LawnGreen` || http://alurcard2.net/color.svg?color=124,252,0,1.00 || #FF7CFC00 || 255 || 124, 252, 0 || 90, 100, 49 || 90, 100, 98 || || `LemonChiffon` || http://alurcard2.net/color.svg?color=255,250,205,1.00 || #FFFFFACD || 255 || 255, 250, 205 || 54, 100, 90 || 54, 19, 100 || || `LightBlue` || http://alurcard2.net/color.svg?color=173,216,230,1.00 || #FFADD8E6 || 255 || 173, 216, 230 || 194, 53, 79 || 194, 24, 90 || || `LightCoral` || http://alurcard2.net/color.svg?color=240,128,128,1.00 || #FFF08080 || 255 || 240, 128, 128 || 0, 78, 72 || 0, 46, 94 || || `LightCyan` || http://alurcard2.net/color.svg?color=224,255,255,1.00 || #FFE0FFFF || 255 || 224, 255, 255 || 180, 99, 93 || 180, 12, 100 || || `LightGoldenrodYellow` || http://alurcard2.net/color.svg?color=250,250,210,1.00 || #FFFAFAD2 || 255 || 250, 250, 210 || 60, 80, 90 || 60, 15, 98 || || `LightGray` || http://alurcard2.net/color.svg?color=211,211,211,1.00 || #FFD3D3D3 || 255 || 211, 211, 211 || 0, 0, 82 || 0, 0, 82 || || `LightGreen` || http://alurcard2.net/color.svg?color=144,238,144,1.00 || #FF90EE90 || 255 || 144, 238, 144 || 120, 73, 74 || 120, 39, 93 || || `LightGrey` || http://alurcard2.net/color.svg?color=211,211,211,1.00 || #FFD3D3D3 || 255 || 211, 211, 211 || 0, 0, 82 || 0, 0, 82 || || `LightPink` || http://alurcard2.net/color.svg?color=255,182,193,1.00 || #FFFFB6C1 || 255 || 255, 182, 193 || 351, 100, 85 || 351, 28, 100 || || `LightSalmon` || http://alurcard2.net/color.svg?color=255,160,122,1.00 || #FFFFA07A || 255 || 255, 160, 122 || 17, 100, 73 || 17, 52, 100 || || `LightSeaGreen` || http://alurcard2.net/color.svg?color=32,178,170,1.00 || #FF20B2AA || 255 || 32, 178, 170 || 176, 69, 41 || 176, 82, 69 || || `LightSkyBlue` || http://alurcard2.net/color.svg?color=135,206,250,1.00 || #FF87CEFA || 255 || 135, 206, 250 || 202, 92, 75 || 202, 46, 98 || || `LightSlateGray` || http://alurcard2.net/color.svg?color=119,136,153,1.00 || #FF778899 || 255 || 119, 136, 153 || 210, 14, 53 || 210, 22, 60 || || `LightSlateGrey` || http://alurcard2.net/color.svg?color=119,136,153,1.00 || #FF778899 || 255 || 119, 136, 153 || 210, 14, 53 || 210, 22, 60 || || `LightSteelBlue` || http://alurcard2.net/color.svg?color=176,196,222,1.00 || #FFB0C4DE || 255 || 176, 196, 222 || 213, 41, 78 || 213, 20, 87 || || `LightYellow` || http://alurcard2.net/color.svg?color=255,255,224,1.00 || #FFFFFFE0 || 255 || 255, 255, 224 || 60, 99, 93 || 60, 12, 100 || || `Lime` || http://alurcard2.net/color.svg?color=0,255,0,1.00 || #FF00FF00 || 255 || 0, 255, 0 || 120, 100, 50 || 120, 100, 100 || || `LimeGreen` || http://alurcard2.net/color.svg?color=50,205,50,1.00 || #FF32CD32 || 255 || 50, 205, 50 || 120, 60, 50 || 120, 75, 80 || || `Linen` || http://alurcard2.net/color.svg?color=250,240,230,1.00 || #FFFAF0E6 || 255 || 250, 240, 230 || 30, 66, 94 || 30, 7, 98 || || `Magenta` || http://alurcard2.net/color.svg?color=255,0,255,1.00 || #FFFF00FF || 255 || 255, 0, 255 || 300, 100, 50 || 300, 100, 100 || || `Maroon` || http://alurcard2.net/color.svg?color=128,0,0,1.00 || #FF800000 || 255 || 128, 0, 0 || 0, 100, 25 || 0, 100, 50 || || `MediumAquamarine` || http://alurcard2.net/color.svg?color=102,205,170,1.00 || #FF66CDAA || 255 || 102, 205, 170 || 159, 50, 60 || 159, 50, 80 || || `MediumBlue` || http://alurcard2.net/color.svg?color=0,0,205,1.00 || #FF0000CD || 255 || 0, 0, 205 || 240, 100, 40 || 240, 100, 80 || || `MediumOrchid` || http://alurcard2.net/color.svg?color=186,85,211,1.00 || #FFBA55D3 || 255 || 186, 85, 211 || 288, 58, 58 || 288, 59, 82 || || `MediumPurple` || http://alurcard2.net/color.svg?color=147,112,219,1.00 || #FF9370DB || 255 || 147, 112, 219 || 259, 59, 64 || 259, 48, 85 || || `MediumSeaGreen` || http://alurcard2.net/color.svg?color=60,179,113,1.00 || #FF3CB371 || 255 || 60, 179, 113 || 146, 49, 46 || 146, 66, 70 || || `MediumSlateBlue` || http://alurcard2.net/color.svg?color=123,104,238,1.00 || #FF7B68EE || 255 || 123, 104, 238 || 248, 79, 67 || 248, 56, 93 || || `MediumSpringGreen` || http://alurcard2.net/color.svg?color=0,250,154,1.00 || #FF00FA9A || 255 || 0, 250, 154 || 156, 100, 49 || 156, 100, 98 || || `MediumTurquoise` || http://alurcard2.net/color.svg?color=72,209,204,1.00 || #FF48D1CC || 255 || 72, 209, 204 || 177, 59, 55 || 177, 65, 81 || || `MediumVioletRed` || http://alurcard2.net/color.svg?color=199,21,133,1.00 || #FFC71585 || 255 || 199, 21, 133 || 323, 80, 43 || 323, 89, 78 || || `MidnightBlue` || http://alurcard2.net/color.svg?color=25,25,112,1.00 || #FF191970 || 255 || 25, 25, 112 || 240, 63, 26 || 240, 77, 43 || || `MintCream` || http://alurcard2.net/color.svg?color=245,255,250,1.00 || #FFF5FFFA || 255 || 245, 255, 250 || 150, 100, 98 || 150, 3, 100 || || `MistyRose` || http://alurcard2.net/color.svg?color=255,228,225,1.00 || #FFFFE4E1 || 255 || 255, 228, 225 || 6, 100, 94 || 6, 11, 100 || || `Moccasin` || http://alurcard2.net/color.svg?color=255,228,181,1.00 || #FFFFE4B5 || 255 || 255, 228, 181 || 38, 100, 85 || 38, 29, 100 || || `NavajoWhite` || http://alurcard2.net/color.svg?color=255,222,173,1.00 || #FFFFDEAD || 255 || 255, 222, 173 || 35, 100, 83 || 35, 32, 100 || || `Navy` || http://alurcard2.net/color.svg?color=0,0,128,1.00 || #FF000080 || 255 || 0, 0, 128 || 240, 100, 25 || 240, 100, 50 || || `OldLace` || http://alurcard2.net/color.svg?color=253,245,230,1.00 || #FFFDF5E6 || 255 || 253, 245, 230 || 39, 85, 94 || 39, 9, 99 || || `Olive` || http://alurcard2.net/color.svg?color=128,128,0,1.00 || #FF808000 || 255 || 128, 128, 0 || 60, 100, 25 || 60, 100, 50 || || `OliveDrab` || http://alurcard2.net/color.svg?color=107,142,35,1.00 || #FF6B8E23 || 255 || 107, 142, 35 || 79, 60, 34 || 79, 75, 55 || || `Orange` || http://alurcard2.net/color.svg?color=255,165,0,1.00 || #FFFFA500 || 255 || 255, 165, 0 || 38, 100, 50 || 38, 100, 100 || || `OrangeRed` || http://alurcard2.net/color.svg?color=255,69,0,1.00 || #FFFF4500 || 255 || 255, 69, 0 || 16, 100, 50 || 16, 100, 100 || || `Orchid` || http://alurcard2.net/color.svg?color=218,112,214,1.00 || #FFDA70D6 || 255 || 218, 112, 214 || 303, 58, 64 || 303, 48, 85 || || `PaleGoldenrod` || http://alurcard2.net/color.svg?color=238,232,170,1.00 || #FFEEE8AA || 255 || 238, 232, 170 || 54, 66, 80 || 54, 28, 93 || || `PaleGreen` || http://alurcard2.net/color.svg?color=152,251,152,1.00 || #FF98FB98 || 255 || 152, 251, 152 || 120, 92, 79 || 120, 39, 98 || || `PaleTurquoise` || http://alurcard2.net/color.svg?color=175,238,238,1.00 || #FFAFEEEE || 255 || 175, 238, 238 || 180, 64, 80 || 180, 26, 93 || || `PaleVioletRed` || http://alurcard2.net/color.svg?color=219,112,147,1.00 || #FFDB7093 || 255 || 219, 112, 147 || 341, 59, 64 || 341, 48, 85 || || `PapayaWhip` || http://alurcard2.net/color.svg?color=255,239,213,1.00 || #FFFFEFD5 || 255 || 255, 239, 213 || 37, 100, 91 || 37, 16, 100 || || `PeachPuff` || http://alurcard2.net/color.svg?color=255,218,185,1.00 || #FFFFDAB9 || 255 || 255, 218, 185 || 28, 100, 86 || 28, 27, 100 || || `Peru` || http://alurcard2.net/color.svg?color=205,133,63,1.00 || #FFCD853F || 255 || 205, 133, 63 || 29, 58, 52 || 29, 69, 80 || || `Pink` || http://alurcard2.net/color.svg?color=255,192,203,1.00 || #FFFFC0CB || 255 || 255, 192, 203 || 350, 99, 87 || 350, 24, 100 || || `Plum` || http://alurcard2.net/color.svg?color=221,160,221,1.00 || #FFDDA0DD || 255 || 221, 160, 221 || 300, 47, 74 || 300, 27, 86 || || `PowderBlue` || http://alurcard2.net/color.svg?color=176,224,230,1.00 || #FFB0E0E6 || 255 || 176, 224, 230 || 186, 51, 79 || 186, 23, 90 || || `Purple` || http://alurcard2.net/color.svg?color=128,0,128,1.00 || #FF800080 || 255 || 128, 0, 128 || 300, 100, 25 || 300, 100, 50 || || `Red` || http://alurcard2.net/color.svg?color=255,0,0,1.00 || #FFFF0000 || 255 || 255, 0, 0 || 0, 100, 50 || 0, 100, 100 || || `RosyBrown` || http://alurcard2.net/color.svg?color=188,143,143,1.00 || #FFBC8F8F || 255 || 188, 143, 143 || 0, 25, 64 || 0, 23, 73 || || `RoyalBlue` || http://alurcard2.net/color.svg?color=65,105,225,1.00 || #FF4169E1 || 255 || 65, 105, 225 || 225, 72, 56 || 225, 71, 88 || || `SaddleBrown` || http://alurcard2.net/color.svg?color=139,69,19,1.00 || #FF8B4513 || 255 || 139, 69, 19 || 25, 75, 30 || 25, 86, 54 || || `Salmon` || http://alurcard2.net/color.svg?color=250,128,114,1.00 || #FFFA8072 || 255 || 250, 128, 114 || 6, 93, 71 || 6, 54, 98 || || `SandyBrown` || http://alurcard2.net/color.svg?color=244,164,96,1.00 || #FFF4A460 || 255 || 244, 164, 96 || 27, 87, 66 || 27, 60, 95 || || `SeaGreen` || http://alurcard2.net/color.svg?color=46,139,87,1.00 || #FF2E8B57 || 255 || 46, 139, 87 || 146, 50, 36 || 146, 66, 54 || || `SeaShell` || http://alurcard2.net/color.svg?color=255,245,238,1.00 || #FFFFF5EE || 255 || 255, 245, 238 || 24, 100, 96 || 24, 6, 100 || || `Sienna` || http://alurcard2.net/color.svg?color=160,82,45,1.00 || #FFA0522D || 255 || 160, 82, 45 || 19, 56, 40 || 19, 71, 62 || || `Silver` || http://alurcard2.net/color.svg?color=192,192,192,1.00 || #FFC0C0C0 || 255 || 192, 192, 192 || 0, 0, 75 || 0, 0, 75 || || `SkyBlue` || http://alurcard2.net/color.svg?color=135,206,235,1.00 || #FF87CEEB || 255 || 135, 206, 235 || 197, 71, 72 || 197, 42, 92 || || `SlateBlue` || http://alurcard2.net/color.svg?color=106,90,205,1.00 || #FF6A5ACD || 255 || 106, 90, 205 || 248, 53, 57 || 248, 56, 80 || || `SlateGray` || http://alurcard2.net/color.svg?color=112,128,144,1.00 || #FF708090 || 255 || 112, 128, 144 || 210, 12, 50 || 210, 22, 56 || || `SlateGrey` || http://alurcard2.net/color.svg?color=112,128,144,1.00 || #FF708090 || 255 || 112, 128, 144 || 210, 12, 50 || 210, 22, 56 || || `Snow` || http://alurcard2.net/color.svg?color=255,250,250,1.00 || #FFFFFAFA || 255 || 255, 250, 250 || 0, 100, 99 || 0, 1, 100 || || `SpringGreen` || http://alurcard2.net/color.svg?color=0,255,127,1.00 || #FF00FF7F || 255 || 0, 255, 127 || 149, 100, 50 || 149, 100, 100 || || `SteelBlue` || http://alurcard2.net/color.svg?color=70,130,180,1.00 || #FF4682B4 || 255 || 70, 130, 180 || 207, 44, 49 || 207, 61, 70 || || `Tan` || http://alurcard2.net/color.svg?color=210,180,140,1.00 || #FFD2B48C || 255 || 210, 180, 140 || 34, 43, 68 || 34, 33, 82 || || `Teal` || http://alurcard2.net/color.svg?color=0,128,128,1.00 || #FF008080 || 255 || 0, 128, 128 || 180, 100, 25 || 180, 100, 50 || || `Thistle` || http://alurcard2.net/color.svg?color=216,191,216,1.00 || #FFD8BFD8 || 255 || 216, 191, 216 || 300, 24, 79 || 300, 11, 84 || || `Tomato` || http://alurcard2.net/color.svg?color=255,99,71,1.00 || #FFFF6347 || 255 || 255, 99, 71 || 9, 100, 63 || 9, 72, 100 || || `Transparent` || http://alurcard2.net/color.svg?color=255,255,255,0.00 || #00FFFFFF || 0 || 255, 255, 255 || 0, 0, 100 || 0, 0, 100 || || `Turquoise` || http://alurcard2.net/color.svg?color=64,224,208,1.00 || #FF40E0D0 || 255 || 64, 224, 208 || 174, 72, 56 || 174, 71, 87 || || `Violet` || http://alurcard2.net/color.svg?color=238,130,238,1.00 || #FFEE82EE || 255 || 238, 130, 238 || 300, 76, 72 || 300, 45, 93 || || `Wheat` || http://alurcard2.net/color.svg?color=245,222,179,1.00 || #FFF5DEB3 || 255 || 245, 222, 179 || 39, 76, 83 || 39, 26, 96 || || `White` || http://alurcard2.net/color.svg?color=255,255,255,1.00 || #FFFFFFFF || 255 || 255, 255, 255 || 0, 0, 100 || 0, 0, 100 || || `WhiteSmoke` || http://alurcard2.net/color.svg?color=245,245,245,1.00 || #FFF5F5F5 || 255 || 245, 245, 245 || 0, 0, 96 || 0, 0, 96 || || `Yellow` || http://alurcard2.net/color.svg?color=255,255,0,1.00 || #FFFFFF00 || 255 || 255, 255, 0 || 60, 100, 50 || 60, 100, 100 || || `YellowGreen` || http://alurcard2.net/color.svg?color=154,205,50,1.00 || #FF9ACD32 || 255 || 154, 205, 50 || 79, 60, 50 || 79, 75, 80 ||