Color sabit listesi ve ColorFade, ColorValue ve RGBA işlevleri
Şunlar için geçerlidir: Tuval uygulamaları Model yönetimli uygulamalar Power Pages Power Platform CLI
Yerleşik renk değerlerini kullanın, özel renkleri tanımlayın ve alfa kanalını kullanın.
Not
PAC CLI pac power-fx komutları Renk numaralandırmasını desteklemez.
Description
Color numaralandırmasını kullanarak HTML'nin Geçişli Stil Sayfaları (CSS) tarafından tanımlanan renklere kolayca erişebilirsiniz. Örneğin, Color.Red saf kırmızı döndürür. Bu konunun sonunda belirtilen renklerin bir listesini bulabilirsiniz.
ColorValue işlevi, CSS uygulamasındaki renk dizesine dayalı bir renk döndürür. Dize, şu biçimlerden herhangi birini alabilir:
- CSS renk adı: "RoxyBrown" ve "OliveDrab" örneklerdir. Bu adlar boşluk içermez. Desteklenen renklerin listesi bu konunun ilerleyen aşamalarında yer almaktadır.
- 6 basamaklı onaltılık değer: Örnek olarak, "#ffd700" , "Altın" ile aynıdır. Dize "#rrggbb" biçimindedir, burada rr onaltılık değerde 2 basamaklı kırmızı kısımdır, gg yeşil ve bb mavidir.
- 8 basamaklı onaltılık değer: Örnek olarak, "#ff7f5080" , %50 alfa kanalına sahip "Mercan" ile aynıdır. Dize, "#rrggbbaa" biçimindedir; burada rr, gg ve bb 6 basamaklı biçimle aynıdır. Alfa kanalı aa ile temsil edilir: 00 tam saydamı ve ff tam opağı temsil eder.
RGBA işlevi kırmızı, yeşil ve mavi renk bileşenlerine göre bir renk döndürür. İşlev ayrıca, birbirinin önünde katmanlı haldeki denetim renklerini karıştırmak için bir alfa kanalı içerir. Alfa kanalı 0 veya %0 (tam şeffaf ve görünmez) ile 1 ya da %100 (tam opak ve bir denetimin arkasındaki tüm katmanları tamamen engeller) arasında değişir.
ColorFade işlevi bir rengin daha açık veya daha koyu halini döndürür. Soldurma miktarı; -1 (bir rengi siyaha kadar tamamen koyulaştırır), 0 (rengi etkilemez) ve 1 (bir rengi beyaza kadar tamamen açar) arasında değişiklik gösterir.
Alfa kanalı
Tuval uygulamasında denetimleri birbirinin üzerinde katmanlaştırabilir ve bir denetimin, arkasındaki herhangi bir denetime göre saydamlığını belirleyebilirsiniz. Sonuç olarak, renkler katmanlarla karışacaktır. Örneğin, bu şema alfa ayarı %50 olan üç ana rengin nasıl karıştığını gösterir:
Ayrıca görüntüleri, alfa kanallarını destekleyen dosya biçimlerinde karıştırabilirsiniz. Örneğin, .jpeg dosyalarını karıştıramazsınız ancak .png dosyalarını karıştırabilirsiniz. Sonraki grafik, önceki örnekteki aynı kırmızı, yeşil ve mavi renkleri gösterir ancak kırmızı renk, %50 alfa kanalı olan bir .png dosyasında dalgalı çizgi (daire yerine) olarak görünür:
Color numaralandırması değeri belirtirseniz veya renk adı ya da 6 basamaklı onaltılık bir değer ile bir ColorValue formülü oluşturursanız alfa ayarı %100'dür, renk tam opaktır.
Sözdizimi
Renk.Renk Adı
- ColorName - Gerekli. Geçişli Stil Sayfası (CSS) renk adı. Olası numaralandırma değerleri listesi bu konu sonunda görüntülenir.
ColorValue( CSSColor )
- CSSColor - Gerekli. Geçişli Stil Sayfası (CSS) renk tanımı. OliveDrab gibi bir ad veya #6b8e23 ya da #7fffd420 gibi bir onaltılık değer belirtebilirsiniz. Onaltılık değerler #rrggbb veya #rrggbbaa şeklinde olabilir.
ColorValue( Yazılmamış )
- Yazılmamış - Gerekli. Geçişli Stil Sayfası (CSS) renk tanımını belirten dize içeren, türü belirtilmemiş nesne.
RGBA (Kırmızı , Yeşil, Mavi, Alfa )
- Kırmızı, Yeşil, Mavi - Gerekli. 0'dan (sıfır doygunluk) 255'e (tam doygunluk) kadar uzanan renk bileşeni değerleri.
- Alfa - Gerekli. 0'dan (tam saydam) 1'e (tam opak) kadar uzanan alfa bileşeni. %0 ile %100 arasında bir yüzde de kullanabilirsiniz.
ColorFade(Renk,FadeAmount )
- Renk - Gerekli. Color.Red gibi bir renk değeri veya ColorValue ya da RGBA çıkışı.
- FadeAmount - Gerekli. -1 ile 1 arasında bir sayı. -1, rengi siyaha kadar tamamen koyulaştırır; 0 rengi etkilemez ve 1, rengi beyaza kadar tamamen açar. -%100 ile %100 arasında bir yüzde değeri de kullanabilirsiniz.
Yerleşik renkler
Renk numaralandırması | ColorValue | RGBA | Renk Örneği |
---|---|---|---|
Renk.AliceMavi | ColorValue( "#f0f8ff" ) ColorValue( "aliceblue" ) |
RGBA( 240, 248, 255, 1 ) | |
Renk.AntikBeyaz | ColorValue( "#faebd7" ) ColorValue( "Antik Beyaz" ) |
RGBA( 250, 235, 215, 1 ) | |
Renk.Aqua | ColorValue( "#00ffff" ) ColorValue( "AQUA" ) |
RGBA( 0, 255, 255, 1 ) | |
Renk.Akuamarin | ColorValue( "#7fffd4" ) ColorValue( "Akuamarin") |
RGBA( 127, 255, 212, 1 ) | |
Renk.Azure | ColorValue( "#f0ffff" ) ColorValue( "masmavi" ) |
RGBA( 240, 255, 255, 1 ) | |
Renk.Bej | ColorValue( "#f5f5dc" ) ColorValue( "Bej" ) |
RGBA( 245, 245, 220, 1 ) | |
Renk.Bisque | ColorValue( "#ffe4c4" ) ColorValue( "BISQUE" ) |
RGBA( 255, 228, 196, 1 ) | |
Renk.Siyah | ColorValue( "#000000" ) ColorValue( "Siyah" ) |
RGBA( 0, 0, 0, 1 ) | |
Renk.BeyazlatılmışBadem | ColorValue( "#ffebcd" ) ColorValue( "blanchedalmond" ) |
RGBA( 255, 235, 205, 1 ) | |
Renk.Mavi | ColorValue( "#0000ff" ) ColorValue( "Mavi" ) |
RGBA( 0, 0, 255, 1 ) | |
Renk.MaviMenekşe | ColorValue( "#8a2be2" ) ColorValue( "MAVİMENEKŞE" ) |
RGBA( 138, 43, 226, 1 ) | |
Renk.Kahverengi | ColorValue( "#a52a2a" ) ColorValue( "Kahverengi" ) |
RGBA( 165, 42, 42, 1 ) | |
Renk.Burlywood | ColorValue( "#deb887" ) ColorValue( "burlywood" ) |
RGBA( 222, 184, 135, 1 ) | |
Renk.Harbiyeli Mavisi | ColorValue( "#5f9ea0" ) ColorValue( "CadetBlue") |
RGBA( 95, 158, 160, 1 ) | |
Renk.Chartreuse | ColorValue( "#7fff00" ) ColorValue( "CHARTREUSE" ) |
RGBA( 127, 255, 0, 1 ) | |
Renk.Çikolata | ColorValue( "#d2691e" ) ColorValue( "Çikolata" ) |
RGBA( 210, 105, 30, 1 ) | |
Renk.Mercan | ColorValue( "#ff7f50" ) ColorValue( "mercan" ) |
RGBA( 255, 127, 80, 1 ) | |
Renk.Peygamber Çiçeği Mavisi | ColorValue( "#6495ed" ) ColorValue( "Peygamber Çiçeği Mavisi" ) |
RGBA( 100, 149, 237, 1 ) | |
Renk.Mısır ipeği | ColorValue( "#fff8dc" ) ColorValue( "MISIR İPEĞİ" ) |
RGBA( 255, 248, 220, 1 ) | |
Renk.Koyu Kızıl | ColorValue( "#dc143c" ) ColorValue( "Kırmızı" ) |
RGBA( 220, 20, 60, 1 ) | |
Renk.Camgöbeği | ColorValue( "#00ffff" ) ColorValue( "camgöbeği" ) |
RGBA( 0, 255, 255, 1 ) | |
Renk.DarkBlue | ColorValue( "#00008b" ) ColorValue( "Koyu Mavi" ) |
RGBA( 0, 0, 139, 1 ) | |
Renk.DarkCyan | ColorValue( "#008b8b" ) ColorValue( "DARKCYAN" ) |
RGBA( 0, 139, 139, 1 ) | |
Renk.DarkGoldenRod | ColorValue( "#b8860b" ) ColorValue( "DarkGoldenRod" ) |
RGBA( 184, 134, 11, 1 ) | |
Renk.Koyu Gri | ColorValue( "#a9a9a9" ) ColorValue( "koyu gri") |
RGBA( 169, 169, 169, 1 ) | |
Renk.Koyu Yeşil | ColorValue( "#006400" ) ColorValue( "Koyu Yeşil" ) |
RGBA( 0, 100, 0, 1 ) | |
Renk.Koyu Gri | ColorValue( "#a9a9a9" ) ColorValue( "KOYU GRİ" ) |
RGBA( 169, 169, 169, 1 ) | |
Renk.DarkKhaki | ColorValue( "#bdb76b" ) ColorValue( "DarkKhaki" ) |
RGBA( 189, 183, 107, 1 ) | |
Renk.DarkMagenta | ColorValue( "#8b008b" ) ColorValue( "koyu eflatun" ) |
RGBA( 139, 0, 139, 1 ) | |
Renk.KoyuZeytin Yeşili | ColorValue( "#556b2f" ) ColorValue( "DarkOliveGreen" ) |
RGBA( 85, 107, 47, 1 ) | |
Renk.Koyu Turuncu | ColorValue( "#ff8c00" ) ColorValue( "KOYU TURUNCU" ) |
RGBA( 255, 140, 0, 1 ) | |
Renk.DarkOrkide | ColorValue( "#9932cc" ) ColorValue( "DarkOrchid" ) |
RGBA( 153, 50, 204, 1 ) | |
Renk.Koyu Kırmızı | ColorValue( "#8b0000" ) ColorValue( "koyu kırmızı" ) |
RGBA( 139, 0, 0, 1 ) | |
Renk.DarkSalmon | ColorValue( "#e9967a" ) ColorValue( "DarkSalmon" ) |
RGBA( 233, 150, 122, 1 ) | |
Renk.DarkSeaGreen | ColorValue( "#8fbc8f" ) ColorValue( "KARANLIK DENİZ YEŞİLİ" ) |
RGBA( 143, 188, 143, 1 ) | |
Renk.DarkSlateBlue | ColorValue( "#483d8b" ) ColorValue( "DarkSlateBlue" ) |
RGBA( 72, 61, 139, 1 ) | |
Renk.DarkSlateGray | ColorValue( "#2f4f4f" ) ColorValue( "darkslategray" ) |
RGBA( 47, 79, 79, 1 ) | |
Renk.DarkSlateGrey | ColorValue( "#2f4f4f" ) ColorValue( "DarkSlateGrey" ) |
RGBA( 47, 79, 79, 1 ) | |
Renk.KoyuTurkuaz | ColorValue( "#00ced1" ) ColorValue( "DARKTURQUOISE" ) |
RGBA( 0, 206, 209, 1 ) | |
Renk.DarkViolet | ColorValue( "#9400d3" ) ColorValue( "DarkViolet" ) |
RGBA( 148, 0, 211, 1 ) | |
Renk.Derin Pembe | ColorValue( "#ff1493" ) ColorValue( "deeppink" ) |
RGBA( 255, 20, 147, 1 ) | |
Renk.DeepSkyBlue | ColorValue( "#00bfff" ) ColorValue( "DeepSkyBlue") |
RGBA( 0, 191, 255, 1 ) | |
Renk.DimGray | ColorValue( "#696969" ) ColorValue( "DIMGRAY" ) |
RGBA( 105, 105, 105, 1 ) | |
Renk.DimGrey | ColorValue( "#696969" ) ColorValue( "DimGrey" ) |
RGBA( 105, 105, 105, 1 ) | |
Renk.DodgerBlue | ColorValue( "#1e90ff" ) ColorValue( "dodgerblue" ) |
RGBA( 30, 144, 255, 1 ) | |
Renk.FireBrick | ColorValue( "#b22222" ) ColorValue( "Ateş Tuğlası" ) |
RGBA( 178, 34, 34, 1 ) | |
Renk.ÇiçekselBeyaz | ColorValue( "#fffaf0" ) ColorValue( "ÇİÇEK BEYAZI" ) |
RGBA( 255, 250, 240, 1 ) | |
Renk.OrmanYeşil | ColorValue( "#228b22" ) ColorValue( "Orman Yeşili" ) |
RGBA( 34, 139, 34, 1 ) | |
Renk.Fuşya | ColorValue( "#ff00ff" ) ColorValue( "fuşya" ) |
RGBA( 255, 0, 255, 1 ) | |
Renk.Gainsboro | ColorValue( "#dcdcdc" ) ColorValue( "Kazançlar") |
RGBA( 220, 220, 220, 1 ) | |
Renk.Hayalet Beyaz | ColorValue( "#f8f8ff") ColorValue( "HAYALET BEYAZ" ) |
RGBA( 248, 248, 255, 1 ) | |
Renk.Altın | ColorValue( "#ffd700" ) ColorValue( "Altın" ) |
RGBA( 255, 215, 0, 1 ) | |
Renk.GoldenRod | ColorValue( "#daa520" ) ColorValue( "altın başak" ) |
RGBA( 218, 165, 32, 1 ) | |
Renk.Gri | Renk Değeri( "#808080" ) ColorValue( "Gri" ) |
RGBA( 128, 128, 128, 1 ) | |
Renk.Yeşil | ColorValue( "#008000" ) ColorValue( "YEŞİL" ) |
RGBA( 0, 128, 0, 1 ) | |
Renk.YeşilSarı | ColorValue( "#adff2f" ) ColorValue( "YeşilSarı") |
RGBA( 173, 255, 47, 1 ) | |
Renk.Gri | Renk Değeri( "#808080" ) ColorValue( "gri" ) |
RGBA( 128, 128, 128, 1 ) | |
Renk.Bal özü | ColorValue( "#f0fff0" ) ColorValue( "Bal özü" ) |
RGBA( 240, 255, 240, 1 ) | |
Renk.HotPink | ColorValue( "#ff69b4" ) ColorValue( "SICAK PEMBE" ) |
RGBA( 255, 105, 180, 1 ) | |
Renk.KızılderiliKırmızı | ColorValue( "#cd5c5c" ) ColorValue( "Kızılderili" ) |
RGBA( 205, 92, 92, 1 ) | |
Renk.Çivit mavisi | ColorValue( "#4b0082" ) ColorValue( "çivit mavisi" ) |
RGBA( 75, 0, 130, 1 ) | |
Renk.Fildişi | ColorValue( "#fffff0" ) ColorValue( "Fildişi" ) |
RGBA( 255, 255, 240, 1 ) | |
Renk.Haki | ColorValue( "#f0e68c" ) ColorValue( "HAKI" ) |
RGBA( 240, 230, 140, 1 ) | |
Renk.Lavanta | ColorValue( "#e6e6fa" ) ColorValue( "Lavanta" ) |
RGBA( 230, 230, 250, 1 ) | |
Renk.LavantaAllık | ColorValue( "#fff0f5" ) ColorValue( "lavanta allığı") |
RGBA( 255, 240, 245, 1 ) | |
Renk.Çimyeşil | ColorValue( "#7cfc00" ) ColorValue( "Çimyeşili" ) |
RGBA( 124, 252, 0, 1 ) | |
Renk.LimonŞifon | ColorValue( "#fffacd" ) ColorValue( "LİMONŞİFON" ) |
RGBA( 255, 250, 205, 1 ) | |
Renk.Açık Mavi | ColorValue( "#add8e6" ) ColorValue( "Açık Mavi" ) |
RGBA( 173, 216, 230, 1 ) | |
Renk.IşıkMercan | ColorValue( "#f08080" ) ColorValue( "ışık mercan" ) |
RGBA( 240, 128, 128, 1 ) | |
Renk.LightCyan | ColorValue( "#e0ffff" ) ColorValue( "LightCyan" ) |
RGBA( 224, 255, 255, 1 ) | |
Renk.LightGoldenRodYellow | ColorValue( "#fafad2" ) ColorValue( "açık altın başak sarısı" ) |
RGBA( 250, 250, 210, 1 ) | |
Renk.Açık Gri | ColorValue( "#d3d3d3" ) ColorValue( "Açık Gri" ) |
RGBA( 211, 211, 211, 1 ) | |
Renk.Açık Yeşil | ColorValue( "#90ee90" ) ColorValue( "açık yeşil" ) |
RGBA( 144, 238, 144, 1 ) | |
Renk.Açık Gri | ColorValue( "#d3d3d3" ) ColorValue( "Açık Gri") |
RGBA( 211, 211, 211, 1 ) | |
Renk: Açık pembe | ColorValue( "#ffb6c1" ) ColorValue( "AÇIK PEMBE" ) |
RGBA( 255, 182, 193, 1 ) | |
Renk.LightSomon | ColorValue( "#ffa07a" ) ColorValue( "LightSalmon" ) |
RGBA( 255, 160, 122, 1 ) | |
Renk.AçıkDeniz Yeşili | ColorValue( "#20b2aa" ) ColorValue( "açık deniz yeşili" ) |
RGBA( 32, 178, 170, 1 ) | |
Renk.AçıkGök Mavisi | ColorValue( "#87cefa") ColorValue( "LightSkyBlue" ) |
RGBA( 135, 206, 250, 1 ) | |
Renk.LightSlateGray | ColorValue( "#778899" ) ColorValue( "LIGHTSLATEGRAY" ) |
RGBA( 119, 136, 153, 1 ) | |
Renk.LightSlateGrey | ColorValue( "#778899" ) ColorValue( "LightSlateGrey" ) |
RGBA( 119, 136, 153, 1 ) | |
Renk.LightSteelBlue | ColorValue( "#b0c4de" ) ColorValue( "açık çelik mavisi") |
RGBA( 176, 196, 222, 1 ) | |
Renk: Açık Sarı | ColorValue( "#ffffe0" ) ColorValue( "Açık Sarı" ) |
RGBA( 255, 255, 224, 1 ) | |
Renk.Kireç | ColorValue( "#00ff00" ) ColorValue( "KİREÇ") |
RGBA( 0, 255, 0, 1 ) | |
Renk.Misket Limonu Yeşili | ColorValue( "#32cd32" ) ColorValue( "Kireç Yeşili" ) |
RGBA( 50, 205, 50, 1 ) | |
Renk.Keten | ColorValue( "#faf0e6" ) ColorValue( "keten" ) |
RGBA( 250, 240, 230, 1 ) | |
Renk.Eflatun | ColorValue( "#ff00ff" ) ColorValue( "Macenta" ) |
RGBA( 255, 0, 255, 1 ) | |
Renk.Bordo | ColorValue( "#800000" ) ColorValue( "MAROON" ) |
RGBA( 128, 0, 0, 1 ) | |
Renk.MediumAkuamarin | ColorValue( "#66cdaa" ) ColorValue( "OrtaAkuamarin") |
RGBA( 102, 205, 170, 1 ) | |
Renk.MediumBlue | ColorValue( "#0000cd" ) ColorValue( "orta mavi") |
RGBA( 0, 0, 205, 1 ) | |
Renk.MediumOrkide | ColorValue( "#ba55d3" ) ColorValue( "MediumOrchid" ) |
RGBA( 186, 85, 211, 1 ) | |
Renk.MediumPurple | ColorValue( "#9370db" ) ColorValue( "MEDIUMPURPLE" ) |
RGBA( 147, 112, 219, 1 ) | |
Renk.MediumDeniz Yeşili | ColorValue( "#3cb371" ) ColorValue( "MediumSeaGreen" ) |
RGBA( 60, 179, 113, 1 ) | |
Renk.MediumSlateBlue | ColorValue( "#7b68ee" ) ColorValue( "mediumslateblue" ) |
RGBA( 123, 104, 238, 1 ) | |
Renk.MediumBaharYeşil | ColorValue( "#00fa9a" ) ColorValue( "MediumSpringGreen" ) |
RGBA( 0, 250, 154, 1 ) | |
Renk.OrtaTurkuaz | ColorValue( "#48d1cc" ) ColorValue( "MEDIUMTURQUOISE" ) |
RGBA( 72, 209, 204, 1 ) | |
Renk.MediumVioletRed | ColorValue( "#c71585" ) ColorValue( "MediumVioletRed" ) |
RGBA( 199, 21, 133, 1 ) | |
Renk.Gece Mavisi | ColorValue( "#191970") ColorValue( "gece mavisi" ) |
RGBA( 25, 25, 112, 1 ) | |
Renk.Nane Kremi | ColorValue( "#f5fffa" ) ColorValue( "Nane Kreması" ) |
RGBA( 245, 255, 250, 1 ) | |
Renk.MistyRose | ColorValue( "#ffe4e1" ) ColorValue( "MISTYROSE" ) |
RGBA( 255, 228, 225, 1 ) | |
Renk.Mokasin | ColorValue( "#ffe4b5" ) ColorValue( "Mokasen" ) |
RGBA( 255, 228, 181, 1 ) | |
Renk.NavajoBeyaz | ColorValue( "#ffdead" ) ColorValue( "navajowhite" ) |
RGBA( 255, 222, 173, 1 ) | |
Renk.Donanma | ColorValue( "#000080") ColorValue( "Donanma" ) |
RGBA( 0, 0, 128, 1 ) | |
Renk.OldLace | ColorValue( "#fdf5e6" ) ColorValue( "ESKİYONEL" ) |
RGBA( 253, 245, 230, 1 ) | |
Renk.Zeytin | ColorValue( "#808000" ) ColorValue( "Zeytin" ) |
RGBA( 128, 128, 0, 1 ) | |
Renk.ZeytinDrab | ColorValue( "#6b8e23" ) ColorValue( "zeytin ağacı" ) |
RGBA( 107, 142, 35, 1 ) | |
Renk.Turuncu | ColorValue( "#ffa500" ) ColorValue( "Turuncu" ) |
RGBA( 255, 165, 0, 1 ) | |
Renk.TuruncuKırmızı | ColorValue( "#ff4500" ) ColorValue( "TURUNCU KIRMIZI" ) |
RGBA( 255, 69, 0, 1 ) | |
Renk.Orkide | ColorValue( "#da70d6" ) ColorValue( "Orkide" ) |
RGBA( 218, 112, 214, 1 ) | |
Renk.PaleGoldenRod | ColorValue( "#eee8aa" ) ColorValue( "palegoldenrod" ) |
RGBA( 238, 232, 170, 1 ) | |
Renk.Soluk Yeşil | ColorValue( "#98fb98" ) ColorValue( "Soluk Yeşil" ) |
RGBA( 152, 251, 152, 1 ) | |
Renk.PaleTurkuaz | ColorValue( "#afeeee" ) ColorValue( "PALETURQUOISE" ) |
RGBA( 175, 238, 238, 1 ) | |
Renk.Soluk MenekşeKırmızı | ColorValue( "#db7093" ) ColorValue( "PaleVioletRed" ) |
RGBA( 219, 112, 147, 1 ) | |
Renk.PapayaKırbaç | ColorValue( "#ffefd5" ) ColorValue( "papayawhip") |
RGBA( 255, 239, 213, 1 ) | |
Renk.Şeftali Pufu | ColorValue( "#ffdab9" ) ColorValue( "Şeftali Pufu" ) |
RGBA( 255, 218, 185, 1 ) | |
Renk.Peru | ColorValue( "#cd853f" ) ColorValue( "PERU" ) |
RGBA( 205, 133, 63, 1 ) | |
Renk.Pembe | ColorValue( "#ffc0cb" ) ColorValue( "Pembe" ) |
RGBA( 255, 192, 203, 1 ) | |
Renk.Mürdüm eriği | ColorValue( "#dda0dd" ) ColorValue( "erik" ) |
RGBA( 221, 160, 221, 1 ) | |
Renk.PowderBlue | ColorValue( "#b0e0e6" ) ColorValue( "Toz Mavisi" ) |
RGBA( 176, 224, 230, 1 ) | |
Renk.Mor | ColorValue( "#800080" ) ColorValue( "MOR ") |
RGBA( 128, 0, 128, 1 ) | |
Renk.Kırmızı | ColorValue( "#ff0000" ) ColorValue( "Kırmızı" ) |
RGBA( 255, 0, 0, 1 ) | |
Renk.RosyBrown | ColorValue( "#bc8f8f" ) ColorValue( "pembe kahverengi") |
RGBA( 188, 143, 143, 1 ) | |
Renk.Kraliyet Mavisi | ColorValue( "#4169e1") ColorValue( "Kraliyet Mavisi") |
RGBA( 65, 105, 225, 1 ) | |
Renk.Eyer Kahverengi | ColorValue( "#8b4513" ) ColorValue( "SADDLEBROWN" ) |
RGBA( 139, 69, 19, 1 ) | |
Renk.Somon | ColorValue( "#fa8072" ) ColorValue( "Somon" ) |
RGBA( 250, 128, 114, 1 ) | |
Renk.SandyBrown | ColorValue( "#f4a460" ) ColorValue( "kumlu kahverengi" ) |
RGBA( 244, 164, 96, 1 ) | |
Renk.Deniz Yeşili | ColorValue( "#2e8b57" ) ColorValue( "Deniz Yeşili") |
RGBA( 46, 139, 87, 1 ) | |
Renk.Deniz Kabuğu | ColorValue( "#fff5ee" ) ColorValue( "DENİZ KABUĞU" ) |
RGBA( 255, 245, 238, 1 ) | |
Renk.Sienna | ColorValue( "#a0522d" ) ColorValue( "Sienna" ) |
RGBA( 160, 82, 45, 1 ) | |
Renk.Gümüş | ColorValue( "#c0c0c0" ) ColorValue( "gümüş" ) |
RGBA( 192, 192, 192, 1 ) | |
Renk.Gök Mavisi | ColorValue( "#87ceeb" ) ColorValue( "Gök Mavisi" ) |
RGBA( 135, 206, 235, 1 ) | |
Renk.Kayrak Mavisi | ColorValue( "#6a5acd" ) ColorValue( "SLATEBLUE" ) |
RGBA( 106, 90, 205, 1 ) | |
Renk.SlateGray | Renk Değeri( "#708090" ) ColorValue( "SlateGray" ) |
RGBA( 112, 128, 144, 1 ) | |
Renk.SlateGrey | Renk Değeri( "#708090" ) ColorValue( "arduvaz grisi") |
RGBA( 112, 128, 144, 1 ) | |
Renk.Kar | ColorValue( "#fffafa" ) ColorValue( "Kar" ) |
RGBA( 255, 250, 250, 1 ) | |
Renk.BaharYeşil | ColorValue( "#00ff7f" ) ColorValue( "BAHAR YEŞİLİ" ) |
RGBA( 0, 255, 127, 1 ) | |
Renk.ÇelikMavi | ColorValue( "#4682b4" ) ColorValue( "Çelik Mavisi") |
RGBA( 70, 130, 180, 1 ) | |
Renk.Tan | ColorValue( "#d2b48c" ) ColorValue( "tan" ) |
RGBA( 210, 180, 140, 1 ) | |
Renk.Deniz mavisi | ColorValue( "#008080" ) ColorValue( "Deniz mavisi" ) |
RGBA( 0, 128, 128, 1 ) | |
Renk.Devedikeni | ColorValue( "#d8bfd8" ) ColorValue( "THISTLE" ) |
RGBA( 216, 191, 216, 1 ) | |
Renk.Domates | ColorValue( "#ff6347") ColorValue( "Domates" ) |
RGBA( 255, 99, 71, 1 ) | |
Renk.Şeffaf | ColorValue( "#00000000" ) ColorValue( "Şeffaf" ) |
RGBA( 0, 0, 0, 0 ) | |
Renk.Turkuaz | ColorValue( "#40e0d0" ) ColorValue( "turkuaz" ) |
RGBA( 64, 224, 208, 1 ) | |
Renk.Menekşe | ColorValue( "#ee82ee" ) ColorValue( "Menekşe" ) |
RGBA( 238, 130, 238, 1 ) | |
Renk.Buğday | ColorValue( "#f5deb3" ) ColorValue( "BUĞDAY" ) |
RGBA( 245, 222, 179, 1 ) | |
Renk.Beyaz | ColorValue( "#ffffff" ) ColorValue( "Beyaz" ) |
RGBA( 255, 255, 255, 1 ) | |
Renk.BeyazDuman | ColorValue( "#f5f5f5" ) ColorValue( "beyaz duman" ) |
RGBA( 245, 245, 245, 1 ) | |
Renk.Sarı | ColorValue( "#ffff00" ) ColorValue( "Sarı" ) |
RGBA( 255, 255, 0, 1 ) | |
Renk.SarıYeşil | ColorValue( "#9acd32" ) ColorValue( "SARIYEŞIL" ) |
RGBA( 154, 205, 50, 1 ) |