Uppräkningen Color och funktionerna ColorFade, ColorValue och RGBA

Gäller: Arbetsyteappar Modellbaserade appar Power Platform CLI

Använd inbyggda färgvärden, definiera egna färger och använd alfakanalen.

Kommentar

PAC CLI pac power-fx kommandona stöder inte Färg uppräkning.

Description

Med hjälp av uppräkningen Color kan du enkelt komma åt de färger som definieras av HTML-mallens CSS-formatmallar. Till exempel ger Color.Red en ren röd färg. En lista över dessa färger finns i slutet av ämne.

Funktionen ColorValue ger en färg baserad på en färgsträng i CSS. Strängen kan ha följande format:

  • CSS färgnamn:"RoxyBrown" och "OliveDrab" är exempel. Dessa namn innehåller inte blanksteg. Listan över färger som stöds visas senare i det här ämnet.
  • Sexsiffrigt hexadecimalt värde: som till exempel "#ffd700" samma som "Gold". Strängen har formatet "#rrggbb" där rr är den röda delen i två hexadecimala siffror, gg är den gröna och bb är den blå.
  • Åttasiffrigt hexadecimalt värde: till exempel "#ff7f5080" är samma som "Coral" med en 50 % alfakanal. Strängen har formatet "#rrggbbaa" där rr, gg och bb är identiska med 6-siffrigt format. Alfakanalen representeras av aa: 00 och representerar helt genomskinligt och ff representerar helt ogenomskinligt.

Funktionen RGBA ger en färg som bygger på färgkomponenterna röd, grön och blå. Funktionen innehåller även en alfakanal för att blanda färger från kontroller som är överlappande framför varandra. En alfakanal varierar från 0 eller 0 % (som är fullständigt transparenta och osynliga) till 1 eller 100 % som är fullständigt täckande och helt blockerar eventuella lager bakom en kontroll.

Funktionen ColorFade ger en ljusare eller mörkare version av en färg. Tonen varierar från -1 (som fullständigt mörkar en färg till svart), till 0 (som inte har någon inverkan på färgen), till 1 (som helt gör färgen ljusare till vitt).

Alfakanal

I en arbetsyteapp kan du lager kontroller placeras framför varandra och definiera en kontrolls transparens för de kontroller som ligger bakom. Detta innebär att färger blandas genom lagren. Det här diagrammet illustrerar till exempel hur de tre primära färgerna blandas med en alfainställning på 50 %:

Tre primära färger med en alfa-inställning på 50%.

Du kan även blanda bilder i filformat som stöder alfakanaler. Du kan till exempel inte blanda .jpeg-filer, men du kan blanda .png-filer. I nästa bild visas samma röda, gröna och blåa färger från föregående exempel, men den röda färgen visas som en snirklig (i stället för en cirkel) i en .png-fil med en 50 % alfakanal:

Röd krusning med en alfa-inställning på 50% framför blå och gröna cirklar.

Om du anger ett uppräkningsvärde Color eller om du skapar en ColorValue-formel med ett färgnamn eller ett 6-siffrigt hexadecimalt värde, blir alfainställningen 100 %, vilket är helt ogenomskinligt.

Syntax

Color.ColorName

  • ColorName – obligatoriskt. Ett färgnamn på sammanhängande formatmallar (CSS). Listan med möjliga uppräkningsvärden visas i slutet av ämnet.

ColorValue( CSSColor )

  • CSSColor – obligatoriskt. En färgdefinition av sammanhängande formatmallar (CSS). Du kan ange antingen ett namn, till exempel OliveDrab, eller ett hexvärde som #6b8e23 eller #7fffd420. Hexvärden kan ha formen av antingen #rrggbb eller #rrggbbaa.

ColorValue( Utan typ )

  • Utan typ – Obligatoriskt. Ett objekt som inte har angetts och som innehåller en sträng som representerar en färgdefinition av sammanhängande formatmallar (CSS).

RGBA( Red, Green, Blue, Alpha )

  • Red, Green, Blue – obligatoriskt. Bakgrundsfärg för komponentvärden mellan 0 (ingen mättnad) och 255 (fullständig mättnad).
  • Alpha – obligatoriskt. Alpha-komponent mellan 0 (helt transparenta) och 1 (fullständigt ogenomskinlig). Du kan också använda en procentandel, 0 % till 100 %.

ColorFade( Color, FadeAmount )

  • Color – obligatoriskt. Ett färgvärde som Color.Red eller utdata från ColorValue eller RGBA.
  • FadeAmount – obligatoriskt. En siffra mellan -1 och 1. -1 mörkar fullständigt en färg till svart, 0 har ingen inverkan på färgen och 1 gör en färg fullständigt ljusare till vit. Du kan också använda en procentandel från 100 % till 100 %.

Inbyggda färger

Uppräkningen Color ColorValue RGBA Färgremsa
Color.AliceBlue ColorValue( "#f0f8ff" )
ColorValue( "aliceblue" )
RGBA( 240, 248, 255, 1 ) aliceblue.
Color.AntiqueWhite ColorValue( "#faebd7" )
ColorValue( "AntiqueWhite" )
RGBA( 250, 235, 215, 1 ) antikvit.
Color.Aqua ColorValue( "#00ffff" )
ColorValue( "AQUA" )
RGBA( 0, 255, 255, 1 ) vatten.
Color.Aquamarine ColorValue( "#7fffd4" )
ColorValue( "Aquamarine" )
RGBA( 127, 255, 212, 1 ) akvamarin.
Color.Azure ColorValue( "#f0ffff" )
ColorValue( "azure" )
RGBA( 240, 255, 255, 1 ) azurblå.
Color.Beige ColorValue( "#f5f5dc" )
ColorValue( "Beige" )
RGBA( 245, 245, 220, 1 ) beige.
Color.Bisque ColorValue( "#ffe4c4" )
ColorValue( "BISQUE" )
RGBA( 255, 228, 196, 1 ) bisque.
Color.Black ColorValue( "#000000" )
ColorValue( "Black" )
RGBA( 0, 0, 0, 1 ) svart.
Color.BlanchedAlmond ColorValue( "#ffebcd" )
ColorValue( "blanchedalmond" )
RGBA( 255, 235, 205, 1 ) blanchedalmond.
Color.Blue ColorValue( "#0000ff" )
ColorValue( "Blue" )
RGBA( 0, 0, 255, 1 ) blå.
Color.BlueViolet ColorValue( "#8a2be2" )
ColorValue( "BLUEVIOLET" )
RGBA( 138, 43, 226, 1 ) blåviolett.
Color.Brown ColorValue( "#a52a2a" )
ColorValue( "Brown" )
RGBA( 165, 42, 42, 1 ) brun.
Color.Burlywood ColorValue( "#deb887" )
ColorValue( "burlywood" )
RGBA( 222, 184, 135, 1 ) burlywood.
Color.CadetBlue ColorValue( "#5f9ea0" )
ColorValue( "CadetBlue" )
RGBA( 95, 158, 160, 1 ) kadettblå.
Color.Chartreuse ColorValue( "#7fff00" )
ColorValue( "CHARTREUSE" )
RGBA( 127, 255, 0, 1 ) chartreuse.
Color.Chocolate ColorValue( "#d2691e" )
ColorValue( "Chocolate" )
RGBA( 210, 105, 30, 1 ) choklad.
Color.Coral ColorValue( "#ff7f50" )
ColorValue( "coral" )
RGBA( 255, 127, 80, 1 ) korall.
Color.CornflowerBlue ColorValue( "#6495ed" )
ColorValue( "CornflowerBlue" )
RGBA( 100, 149, 237, 1 ) blåklintblå.
Color.Cornsilk ColorValue( "#fff8dc" )
ColorValue( "CORNSILK" )
RGBA( 255, 248, 220, 1 ) kornsilk.
Color.Crimson ColorValue( "#dc143c" )
ColorValue( "Crimson" )
RGBA( 220, 20, 60, 1 ) djupröd.
Color.Cyan ColorValue( "#00ffff" )
ColorValue( "cyan" )
RGBA( 0, 255, 255, 1 ) cyan.
Color.DarkBlue ColorValue( "#00008b" )
ColorValue( "DarkBlue" )
RGBA( 0, 0, 139, 1 ) mörkblå.
Color.DarkCyan ColorValue( "#008b8b" )
ColorValue( "DARKCYAN" )
RGBA( 0, 139, 139, 1 ) mörkblå.
Color.DarkGoldenRod ColorValue( "#b8860b" )
ColorValue( "DarkGoldenRod" )
RGBA( 184, 134, 11, 1 ) mörkguldrod.
Color.DarkGray ColorValue( "#a9a9a9" )
ColorValue( "darkgray" )
RGBA( 169, 169, 169, 1 ) mörkgrå.
Color.DarkGreen ColorValue( "#006400" )
ColorValue( "DarkGreen" )
RGBA( 0, 100, 0, 1 ) mörkgrön.
Color.DarkGrey ColorValue( "#a9a9a9" )
ColorValue( "DARKGREY" )
RGBA( 169, 169, 169, 1 ) mörkgrå.
Color.DarkKhaki ColorValue( "#bdb76b" )
ColorValue( "DarkKhaki" )
RGBA( 189, 183, 107, 1 ) mörkkhaki.
Color.DarkMagenta ColorValue( "#8b008b" )
ColorValue( "darkmagenta" )
RGBA( 139, 0, 139, 1 ) darkmagenta.
Color.DarkOliveGreen ColorValue( "#556b2f" )
ColorValue( "DarkOliveGreen" )
RGBA( 85, 107, 47, 1 ) mörkolivgrön.
Color.DarkOrange ColorValue( "#ff8c00" )
ColorValue( "DARKORANGE" )
RGBA( 255, 140, 0, 1 ) mörkorange.
Color.DarkOrchid ColorValue( "#9932cc" )
ColorValue( "DarkOrchid" )
RGBA( 153, 50, 204, 1 ) mörkorchid.
Color.DarkRed ColorValue( "#8b0000" )
ColorValue( "darkred" )
RGBA( 139, 0, 0, 1 ) mörkröd.
Color.DarkSalmon ColorValue( "#e9967a" )
ColorValue( "DarkSalmon" )
RGBA( 233, 150, 122, 1 ) darksalmon.
Color.DarkSeaGreen ColorValue( "#8fbc8f" )
ColorValue( "DARKSEAGREEN" )
RGBA( 143, 188, 143, 1 ) darkseagreen.
Color.DarkSlateBlue ColorValue( "#483d8b" )
ColorValue( "DarkSlateBlue" )
RGBA( 72, 61, 139, 1 ) mörkblå.
Color.DarkSlateGray ColorValue( "#2f4f4f" )
ColorValue( "darkslategray" )
RGBA( 47, 79, 79, 1 ) darkslategray.
Color.DarkSlateGrey ColorValue( "#2f4f4f" )
ColorValue( "DarkSlateGrey" )
RGBA( 47, 79, 79, 1 ) darkslategrey.
Color.DarkTurquoise ColorValue( "#00ced1" )
ColorValue( "DARKTURQUOISE" )
RGBA( 0, 206, 209, 1 ) mörk turkos.
Color.DarkViolet ColorValue( "#9400d3" )
ColorValue( "DarkViolet" )
RGBA( 148, 0, 211, 1 ) mörkviolett.
Color.DeepPink ColorValue( "#ff1493" )
ColorValue( "deeppink" )
RGBA( 255, 20, 147, 1 ) deeppink.
Color.DeepSkyBlue ColorValue( "#00bfff" )
ColorValue( "DeepSkyBlue" )
RGBA( 0, 191, 255, 1 ) deepskyblue.
Color.DimGray ColorValue( "#696969" )
ColorValue( "DIMGRAY" )
RGBA( 105, 105, 105, 1 ) dimgray.
Color.DimGrey ColorValue( "#696969" )
ColorValue( "DimGrey" )
RGBA( 105, 105, 105, 1 ) dimgrå.
Color.DodgerBlue ColorValue( "#1e90ff" )
ColorValue( "dodgerblue" )
RGBA( 30, 144, 255, 1 ) dodgerblue.
Color.FireBrick ColorValue( "#b22222" )
ColorValue( "FireBrick" )
RGBA( 178, 34, 34, 1 ) eldfast tegel.
Color.FloralWhite ColorValue( "#fffaf0" )
ColorValue( "FLORALWHITE" )
RGBA( 255, 250, 240, 1 ) blommorvit.
Color.ForestGreen ColorValue( "#228b22" )
ColorValue( "ForestGreen" )
RGBA( 34, 139, 34, 1 ) skog grön.
Color.Fuchsia ColorValue( "#ff00ff" )
ColorValue( "fuchsia" )
RGBA( 255, 0, 255, 1 ) fuchsia.
Color.Gainsboro ColorValue( "#dcdcdc" )
ColorValue( "Gainsboro" )
RGBA( 220, 220, 220, 1 ) Gainsboro.
Color.GhostWhite ColorValue( "#f8f8ff" )
ColorValue( "GHOSTWHITE" )
RGBA( 248, 248, 255, 1 ) spökvit.
Color.Gold ColorValue( "#ffd700" )
ColorValue( "Gold" )
RGBA( 255, 215, 0, 1 ) guld.
Color.GoldenRod ColorValue( "#daa520" )
ColorValue( "goldenrod" )
RGBA( 218, 165, 32, 1 ) gullris.
Color.Gray ColorValue( "#808080" )
ColorValue( "Gray" )
RGBA( 128, 128, 128, 1 ) grå.
Color.Green ColorValue( "#008000" )
ColorValue( "GREEN" )
RGBA( 0, 128, 0, 1 ) grön.
Color.GreenYellow ColorValue( "#adff2f" )
ColorValue( "GreenYellow" )
RGBA( 173, 255, 47, 1 ) grön gul.
Color.Grey ColorValue( "#808080" )
ColorValue( "grey" )
RGBA( 128, 128, 128, 1 ) grå.
Color.Honeydew ColorValue( "#f0fff0" )
ColorValue( "Honeydew" )
RGBA( 240, 255, 240, 1 ) honungsdagg.
Color.HotPink ColorValue( "#ff69b4" )
ColorValue( "HOTPINK" )
RGBA( 255, 105, 180, 1 ) skrikrosa.
Color.IndianRed ColorValue( "#cd5c5c" )
ColorValue( "IndianRed" )
RGBA( 205, 92, 92, 1 ) indianred.
Color.Indigo ColorValue( "#4b0082" )
ColorValue( "indigo" )
RGBA( 75, 0, 130, 1 ) indigo.
Color.Ivory ColorValue( "#fffff0" )
ColorValue( "Ivory" )
RGBA( 255, 255, 240, 1 ) elfenben.
Color.Khaki ColorValue( "#f0e68c" )
ColorValue( "KHAKI" )
RGBA( 240, 230, 140, 1 ) kaki.
Color.Lavender ColorValue( "#e6e6fa" )
ColorValue( "Lavender" )
RGBA( 230, 230, 250, 1 ) lavendel.
Color.LavenderBlush ColorValue( "#fff0f5" )
ColorValue( "lavenderblush" )
RGBA( 255, 240, 245, 1 ) lavendelblush.
Color.LawnGreen ColorValue( "#7cfc00" )
ColorValue( "LawnGreen" )
RGBA( 124, 252, 0, 1 ) lawngreen.
Color.LemonChiffon ColorValue( "#fffacd" )
ColorValue( "LEMONCHIFFON" )
RGBA( 255, 250, 205, 1 ) citronchiffong.
Color.LightBlue ColorValue( "#add8e6" )
ColorValue( "LightBlue" )
RGBA( 173, 216, 230, 1 ) ljusblå.
Color.LightCoral ColorValue( "#f08080" )
ColorValue( "lightcoral" )
RGBA( 240, 128, 128, 1 ) ljuskorall.
Color.LightCyan ColorValue( "#e0ffff" )
ColorValue( "LightCyan" )
RGBA( 224, 255, 255, 1 ) ljusblå.
Color.LightGoldenRodYellow ColorValue( "#fafad2" )
ColorValue( "lightgoldenrodyellow" )
RGBA( 250, 250, 210, 1 ) lightgoldenrodyellow.
Color.LightGray ColorValue( "#d3d3d3" )
ColorValue( "LightGray" )
RGBA( 211, 211, 211, 1 ) ljusgrått.
Color.LightGreen ColorValue( "#90ee90" )
ColorValue( "lightgreen" )
RGBA( 144, 238, 144, 1 ) ljusgrön.
Color.LightGrey ColorValue( "#d3d3d3" )
ColorValue( "LightGrey" )
RGBA( 211, 211, 211, 1 ) ljusgrå.
Color.LightPink ColorValue( "#ffb6c1" )
ColorValue( "LIGHTPINK" )
RGBA( 255, 182, 193, 1 ) ljusrosa.
Color.LightSalmon ColorValue( "#ffa07a" )
ColorValue( "LightSalmon" )
RGBA( 255, 160, 122, 1 ) ljussalmon.
Color.LightSeaGreen ColorValue( "#20b2aa" )
ColorValue( "lightseagreen" )
RGBA( 32, 178, 170, 1 ) ljusgrön.
Color.LightSkyBlue ColorValue( "#87cefa" )
ColorValue( "LightSkyBlue" )
RGBA( 135, 206, 250, 1 ) ljusblå.
Color.LightSlateGray ColorValue( "#778899" )
ColorValue( "LIGHTSLATEGRAY" )
RGBA( 119, 136, 153, 1 ) lightslategray.
Color.LightSlateGrey ColorValue( "#778899" )
ColorValue( "LightSlateGrey" )
RGBA( 119, 136, 153, 1 ) lightslategrey.
Color.LightSteelBlue ColorValue( "#b0c4de" )
ColorValue( "lightsteelblue" )
RGBA( 176, 196, 222, 1 ) ljusstålblå.
Color.LightYellow ColorValue( "#ffffe0" )
ColorValue( "LightYellow" )
RGBA( 255, 255, 224, 1 ) ljusgul.
Color.Lime ColorValue( "#00ff00" )
ColorValue( "LIME" )
RGBA( 0, 255, 0, 1 ) kalk.
Color.LimeGreen ColorValue( "#32cd32" )
ColorValue( "LimeGreen" )
RGBA( 50, 205, 50, 1 ) limegrön.
Color.Linen ColorValue( "#faf0e6" )
ColorValue( "linen" )
RGBA( 250, 240, 230, 1 ) Linné.
Color.Magenta ColorValue( "#ff00ff" )
ColorValue( "Magenta" )
RGBA( 255, 0, 255, 1 ) magenta.
Color.Maroon ColorValue( "#800000" )
ColorValue( "MAROON" )
RGBA( 128, 0, 0, 1 ) rödbrun.
Color.MediumAquamarine ColorValue( "#66cdaa" )
ColorValue( "MediumAquamarine" )
RGBA( 102, 205, 170, 1 ) mediumaquamarine.
Color.MediumBlue ColorValue( "#0000cd" )
ColorValue( "mediumblue" )
RGBA( 0, 0, 205, 1 ) medelblå.
Color.MediumOrchid ColorValue( "#ba55d3" )
ColorValue( "MediumOrchid" )
RGBA( 186, 85, 211, 1 ) mediumorchid.
Color.MediumPurple ColorValue( "#9370db" )
ColorValue( "MEDIUMPURPLE" )
RGBA( 147, 112, 219, 1 ) medellila.
Color.MediumSeaGreen ColorValue( "#3cb371" )
ColorValue( "MediumSeaGreen" )
RGBA( 60, 179, 113, 1 ) medelstora gröna.
Color.MediumSlateBlue ColorValue( "#7b68ee" )
ColorValue( "mediumslateblue" )
RGBA( 123, 104, 238, 1 ) mediumslateblue.
Color.MediumSpringGreen ColorValue( "#00fa9a" )
ColorValue( "MediumSpringGreen" )
RGBA( 0, 250, 154, 1 ) medelfjädergrön.
Color.MediumTurquoise ColorValue( "#48d1cc" )
ColorValue( "MEDIUMTURQUOISE" )
RGBA( 72, 209, 204, 1 ) medium turkos.
Color.MediumVioletRed ColorValue( "#c71585" )
ColorValue( "MediumVioletRed" )
RGBA( 199, 21, 133, 1 ) medelviolett.
Color.MidnightBlue ColorValue( "#191970" )
ColorValue( "midnightblue" )
RGBA( 25, 25, 112, 1 ) midnattsblå.
Color.MintCream ColorValue( "#f5fffa" )
ColorValue( "MintCream" )
RGBA( 245, 255, 250, 1 ) mintcream.
Color.MistyRose ColorValue( "#ffe4e1" )
ColorValue( "MISTYROSE" )
RGBA( 255, 228, 225, 1 ) mistyrose.
Color.Moccasin ColorValue( "#ffe4b5" )
ColorValue( "Moccasin" )
RGBA( 255, 228, 181, 1 ) mockasin.
Color.NavajoWhite ColorValue( "#ffdead" )
ColorValue( "navajowhite" )
RGBA( 255, 222, 173, 1 ) navajowhite.
Color.Navy ColorValue( "#000080" )
ColorValue( "Navy" )
RGBA( 0, 0, 128, 1 ) Marin.
Color.OldLace ColorValue( "#fdf5e6" )
ColorValue( "OLDLACE" )
RGBA( 253, 245, 230, 1 ) oldlace.
Color.Olive ColorValue( "#808000" )
ColorValue( "Olive" )
RGBA( 128, 128, 0, 1 ) oliv.
Color.OliveDrab ColorValue( "#6b8e23" )
ColorValue( "olivedrab" )
RGBA( 107, 142, 35, 1 ) olivedrab.
Color.Orange ColorValue( "#ffa500" )
ColorValue( "Orange" )
RGBA( 255, 165, 0, 1 ) orange.
Color.OrangeRed ColorValue( "#ff4500" )
ColorValue( "ORANGERED" )
RGBA( 255, 69, 0, 1 ) orange röd.
Color.Orchid ColorValue( "#da70d6" )
ColorValue( "Orchid" )
RGBA( 218, 112, 214, 1 ) orkide.
Color.PaleGoldenRod ColorValue( "#eee8aa" )
ColorValue( "palegoldenrod" )
RGBA( 238, 232, 170, 1 ) palegoldenrod.
Color.PaleGreen ColorValue( "#98fb98" )
ColorValue( "PaleGreen" )
RGBA( 152, 251, 152, 1 ) ljusgrön.
Color.PaleTurquoise ColorValue( "#afeeee" )
ColorValue( "PALETURQUOISE" )
RGBA( 175, 238, 238, 1 ) paleturquoise.
Color.PaleVioletRed ColorValue( "#db7093" )
ColorValue( "PaleVioletRed" )
RGBA( 219, 112, 147, 1 ) palevioletred.
Color.PapayaWhip ColorValue( "#ffefd5" )
ColorValue( "papayawhip" )
RGBA( 255, 239, 213, 1 ) papayawhip.
Color.PeachPuff ColorValue( "#ffdab9" )
ColorValue( "PeachPuff" )
RGBA( 255, 218, 185, 1 ) persikamuff.
Color.Peru ColorValue( "#cd853f" )
ColorValue( "PERU" )
RGBA( 205, 133, 63, 1 ) peru.
Color.Pink ColorValue( "#ffc0cb" )
ColorValue( "Pink" )
RGBA( 255, 192, 203, 1 ) rosa.
Color.Plum ColorValue( "#dda0dd" )
ColorValue( "plum" )
RGBA( 221, 160, 221, 1 ) plommon.
Color.PowderBlue ColorValue( "#b0e0e6" )
ColorValue( "PowderBlue" )
RGBA( 176, 224, 230, 1 ) puderblå.
Color.Purple ColorValue( "#800080" )
ColorValue( "PURPLE" )
RGBA( 128, 0, 128, 1 ) lila.
Color.Red ColorValue( "#ff0000" )
ColorValue( "Red" )
RGBA( 255, 0, 0, 1 ) röd.
Color.RosyBrown ColorValue( "#bc8f8f" )
ColorValue( "rosybrown" )
RGBA( 188, 143, 143, 1 ) rosbrun.
Color.RoyalBlue ColorValue( "#4169e1" )
ColorValue( "RoyalBlue" )
RGBA( 65, 105, 225, 1 ) kungsblå.
Color.SaddleBrown ColorValue( "#8b4513" )
ColorValue( "SADDLEBROWN" )
RGBA( 139, 69, 19, 1 ) sadelbrun.
Color.Salmon ColorValue( "#fa8072" )
ColorValue( "Salmon" )
RGBA( 250, 128, 114, 1 ) lax.
Color.SandyBrown ColorValue( "#f4a460" )
ColorValue( "sandybrown" )
RGBA( 244, 164, 96, 1 ) sandbrun.
Color.SeaGreen ColorValue( "#2e8b57" )
ColorValue( "SeaGreen" )
RGBA( 46, 139, 87, 1 ) havsgrön.
Color.SeaShell ColorValue( "#fff5ee" )
ColorValue( "SEASHELL" )
RGBA( 255, 245, 238, 1 ) snäckskal.
Color.Sienna ColorValue( "#a0522d" )
ColorValue( "Sienna" )
RGBA( 160, 82, 45, 1 ) sienna.
Color.Silver ColorValue( "#c0c0c0" )
ColorValue( "silver" )
RGBA( 192, 192, 192, 1 ) silver.
Color.SkyBlue ColorValue( "#87ceeb" )
ColorValue( "SkyBlue" )
RGBA( 135, 206, 235, 1 ) himmelsblå.
Color.SlateBlue ColorValue( "#6a5acd" )
ColorValue( "SLATEBLUE" )
RGBA( 106, 90, 205, 1 ) slateblue.
Color.SlateGray ColorValue( "#708090" )
ColorValue( "SlateGray" )
RGBA( 112, 128, 144, 1 ) Skiffer grå.
Color.SlateGrey ColorValue( "#708090" )
ColorValue( "slategrey" )
RGBA( 112, 128, 144, 1 ) slategrey.
Color.Snow ColorValue( "#fffafa" )
ColorValue( "Snow" )
RGBA( 255, 250, 250, 1 ) snö.
Color.SpringGreen ColorValue( "#00ff7f" )
ColorValue( "SPRINGGREEN" )
RGBA( 0, 255, 127, 1 ) vårgrön.
Color.SteelBlue ColorValue( "#4682b4" )
ColorValue( "SteelBlue" )
RGBA( 70, 130, 180, 1 ) stålblå.
Color.Tan ColorValue( "#d2b48c" )
ColorValue( "tan" )
RGBA( 210, 180, 140, 1 ) solbränna.
Color.Teal ColorValue( "#008080" )
ColorValue( "Teal" )
RGBA( 0, 128, 128, 1 ) kricka.
Color.Thistle ColorValue( "#d8bfd8" )
ColorValue( "THISTLE" )
RGBA( 216, 191, 216, 1 ) tistel.
Color.Tomato ColorValue( "#ff6347" )
ColorValue( "Tomato" )
RGBA( 255, 99, 71, 1 ) tomat.
Color.Transparent ColorValue( "#00000000" )
ColorValue( "Transparent" )
RGBA( 0, 0, 0, 0 ) transparent.
Color.Turquoise ColorValue( "#40e0d0" )
ColorValue( "turquoise" )
RGBA( 64, 224, 208, 1 ) turkos.
Color.Violet ColorValue( "#ee82ee" )
ColorValue( "Violet" )
RGBA( 238, 130, 238, 1 ) violett.
Color.Wheat ColorValue( "#f5deb3" )
ColorValue( "WHEAT" )
RGBA( 245, 222, 179, 1 ) vete.
Color.White ColorValue( "#ffffff" )
ColorValue( "White" )
RGBA( 255, 255, 255, 1 ) vit.
Color.WhiteSmoke ColorValue( "#f5f5f5" )
ColorValue( "whitesmoke" )
RGBA( 245, 245, 245, 1 ) vit rök.
Color.Yellow ColorValue( "#ffff00" )
ColorValue( "Yellow" )
RGBA( 255, 255, 0, 1 ) gul.
Color.YellowGreen ColorValue( "#9acd32" )
ColorValue( "YELLOWGREEN" )
RGBA( 154, 205, 50, 1 ) gulgrön.