다음을 통해 공유


Color 열거형 및 ColorFade, ColorValue및 RGBA 함수

Functions 적용 대상
Color 모델 기반 앱
ColorFade
ColorValue
Canvas 앱 Copilot Studio 모델 기반 앱 Power Platform CLI Dataverse 함수
RGBA Canvas 앱 Copilot Studio 모델 기반 앱 Power Platform CLI Dataverse 함수 Power Pages

기본 제공 색 값을 사용하고, 사용자 지정 색을 정의하고, 알파 채널을 사용하여 투명도를 제어합니다.

노트

PAC CLI pac power-fx 명령은 열거형을 Color 지원하지 않습니다.

Description

열거형을 Color 사용하여 HTML의 CSS(Cascading Style Sheets)로 정의된 색에 액세스합니다. 예를 들면 다음과 같습니다 Color. 빨간색 은 순수 빨간색을 반환합니다. 이러한 색 목록은 이 문서의 끝에 표시됩니다.

이 함수는 ColorValue CSS 색 문자열을 기반으로 색을 반환합니다. 문자열은 다음과 같은 형식일 수 있습니다.

  • CSS 색상 이름:"RoxyBrown""OliveDrab" 은 예입니다. 이 이름에는 공백이 포함되지 않습니다. 지원되는 색 목록은 이 문서의 뒷부분에 나타납니다.
  • 6자리 16진수 값: 예를 들어 "#ffd700""Gold"와 같습니다. 문자열은 "#rrggbb" 형식을 사용합니다. 여기서 rr 은 16진수 두 자리의 빨간색 부분이고 gg 는 녹색이고 bb 는 파란색입니다.
  • 8자리 16진수 값: 예를 들어 "#ff7f5080" 는 알파 채널이 50개인 "coral" 과%. 문자열은 "#rrggbbaa" 형식을 사용합니다. 여기서 rr, ggbb 는 6자리 형식과 동일합니다. 알파 채널은 aa로 표현됩니다. 00 은 완전히 투명하고 ff 는 완전히 불투명한 것을 의미합니다.

함수는 RGBA 빨강, 녹색 및 파란색 구성 요소를 기반으로 색을 반환합니다. 이 함수에는 서로 앞에 겹쳐진 컨트롤의 색을 혼합하기 위한 알파 채널도 포함되어 있습니다. 알파 채널의 범위는 0개% 또는 0개%(완전히 투명하고 보이지 않음)부터 1% 또는 100개의%(완전히 불투명하고 컨트롤 뒤에 있는 모든 레이어를 완전히 차단)입니다.

이 함수는 ColorFade 더 밝거나 어두운 버전의 색을 반환합니다. 페이드 범위는 -1(색을 검정으로 완전히 어둡게), 0(색에 영향을 주지 않음), 1(색을 흰색으로 완전히 밝게)까지입니다.

알파 채널

캔버스 앱에서는 컨트롤을 서로 앞에 계층화하고 컨트롤의 투명도를 그 뒤에 있는 컨트롤로 설정합니다. 결과적으로 색이 레이어를 통해 혼합됩니다. 예를 들어 이 다이어그램은 세 가지 기본 색이 알파 설정 50%와 혼합되는 방법을 보여 줍니다.

알파 설정이 50%인 3가지 기본 색상.

알파 채널을 지원하는 파일 형식으로 이미지를 혼합할 수도 있습니다. 예를 들어, .jpeg 파일은 혼합할 수 없지만 .png 파일은 혼합할 수 있습니다. 다음 그래픽은 이전 예제와 동일한 빨간색, 녹색 및 파란색 색을 보여 주지만 빨간색은 알파 채널이 50%인 .png 파일에서 물결선(원 대신)으로 나타납니다.

파란색과 녹색 원 앞의 알파 설정이 50%인 빨간색 엉킴.

열거형 값을 지정 Color 하거나 색 이름 또는 6자리 16진수 값으로 수식을 작성하는 ColorValue 경우 알파 설정은 완전히 불투명한 100%입니다.

구문

Color. ColorName

  • ColorName - 필수. CSS(Cascading Style Sheet) 색 이름입니다. 가능한 열거형 값 목록은 이 문서의 끝에 있습니다.

ColorValue( CSSColor )

  • CSSColor - 필수. CSS(Cascading Style Sheet) 색 정의입니다. S 이름, oliveDralike 16진수 값( 예: #6b8e23 olikeffd420**) 16진수 값은 #_rrggbb__usgormat 사용할 수 있습니다. format

ColorValue( 동적 )

  • 동적 - 필수입니다. CSS(Cascading Style Sheet) 색 정의를 나타내는 문자열이 있는 동적 값입니다.

RGBA( 빨강, 녹색, 파랑, 알파 )

  • 빨간색, 녹색, 파란색 - 필수. Color 0(채도 없음)에서 255(전체 채도)에 이르는 구성 요소 값입니다.
  • 알파 - 필수. 0(완전 투명)에서 1(완전히 불투명)에 이르는 알파 구성 요소입니다. 0%에서 100%까지 %를 사용할 수도 있습니다.

ColorFade( Color, FadeAmount )

  • Color -필수. 와 같은 Color색 값입니다. 빨간색 또는 출력 원본 ColorValue 또는 RGBA.
  • FadeAmount - 필수. -1에서 1 사이의 숫자입니다. -1은 색을 검정으로 완전히 어둡게 하고, 0은 색에 영향을 주지 않으며 1은 색을 흰색으로 완전히 밝게 합니다. -100%에서 100%비율을 사용할 수도 있습니다.

내장된 색

Color 열거형 ColorValue RGBA Color 견본
Color. AliceBlue ColorValue( "#f0f8ff")
ColorValue( "aliceblue" )
RGBA( 240, 248, 255, 1 ) aliceblue.
Color. 앤티크화이트 ColorValue( "#faebd7")
ColorValue( "AntiqueWhite" )
RGBA( 250, 235, 215, 1 ) antiquewhite.
Color. 아쿠아 ColorValue( "#00ffff")
ColorValue( "AQUA")
RGBA( 0, 255, 255, 1 ) aqua.
Color. 남록색 ColorValue( "#7fffd4")
ColorValue( "Aquamarine" )
RGBA( 127, 255, 212, 1 ) aquamarine.
Color. 하늘빛 ColorValue( "#f0ffff")
ColorValue( "azure" )
RGBA( 240, 255, 255, 1 ) azure.
Color. 베이지색의 ColorValue( "#f5f5dc")
ColorValue( "Beige" )
RGBA( 245, 245, 220, 1 ) beige.
Color. 비스크 ColorValue( "#ffe4c4")
ColorValue( "BISQUE" )
RGBA( 255, 228, 196, 1 ) bisque.
Color. 검정 ColorValue( "#000000" )
ColorValue( "Black" )
RGBA( 0, 0, 0, 1 ) black.
Color. BlanchedAlmond ColorValue( "#ffebcd")
ColorValue( "blanchedalmond" )
RGBA( 255, 235, 205, 1 ) blanchedalmond.
Color. 파랑 ColorValue( "#0000ff")
ColorValue( "Blue" )
RGBA( 0, 0, 255, 1 ) blue.
Color. BlueViolet ColorValue( "#8a2be2" )
ColorValue( "BLUEVIOLET" )
RGBA( 138, 43, 226, 1 ) blueviolet.
Color. 갈색 ColorValue( "#a52a2a")
ColorValue( "Brown" )
RGBA( 165, 42, 42, 1 ) brown.
Color. 벌리우드 (동음이의) ColorValue( "#deb887" )
ColorValue( "burlywood" )
RGBA( 222, 184, 135, 1 ) burlywood.
Color. CadetBlue ColorValue( "#5f9ea0" )
ColorValue( "CadetBlue" )
RGBA( 95, 158, 160, 1 ) cadetblue.
Color. 연두색 ColorValue( "#7fff00" )
ColorValue( "CHARTREUSE" )
RGBA( 127, 255, 0, 1 ) chartreuse.
Color. 초콜릿 ColorValue( "#d2691e" )
ColorValue( "Chocolate" )
RGBA( 210, 105, 30, 1 ) chocolate.
Color. 산호 ColorValue( "#ff7f50" )
ColorValue( "coral" )
RGBA( 255, 127, 80, 1 ) coral.
Color. 콘플라워블루 ColorValue( "#6495ed" )
ColorValue( "CornflowerBlue" )
RGBA( 100, 149, 237, 1 ) cornflowerblue.
Color. 콘실크 주 ColorValue( "#fff8dc" )
ColorValue( "CORNSILK" )
RGBA( 255, 248, 220, 1 ) cornsilk.
Color. 진홍색 ColorValue( "#dc143c")
ColorValue( "Crimson" )
RGBA( 220, 20, 60, 1 ) crimson.
Color. 청록색 ColorValue( "#00ffff")
ColorValue( "cyan")
RGBA( 0, 255, 255, 1 ) cyan.
Color. DarkBlue ColorValue( "#00008b")
ColorValue( "DarkBlue" )
RGBA( 0, 0, 139, 1 ) darkblue.
Color. DarkCyan ColorValue( "#008b8b" )
ColorValue( "DARKCYAN" )
RGBA( 0, 139, 139, 1 ) darkcyan.
Color. DarkGoldenRod ColorValue( "#b8860b")
ColorValue( "DarkGoldenRod" )
RGBA( 184, 134, 11, 1 ) darkgoldenrod.
Color. DarkGray ColorValue( "#a9a9a9" )
ColorValue( "darkgray" )
RGBA( 169, 169, 169, 1 ) darkgray.
Color. DarkGreen ColorValue( "#006400" )
ColorValue( "DarkGreen" )
RGBA( 0, 100, 0, 1 ) darkgreen.
Color. DarkGrey ColorValue( "#a9a9a9" )
ColorValue( "DARKGREY" )
RGBA( 169, 169, 169, 1 ) darkgrey.
Color. DarkKhaki ColorValue( "#bdb76b")
ColorValue( "DarkKhaki" )
RGBA( 189, 183, 107, 1 ) darkkhaki.
Color. DarkMagenta ColorValue( "#8b008b" )
ColorValue( "darkmagenta" )
RGBA( 139, 0, 139, 1 ) darkmagenta.
Color. DarkOliveGreen ColorValue( "#556b2f" )
ColorValue( "DarkOliveGreen" )
RGBA( 85, 107, 47, 1 ) darkolivegreen.
Color. DarkOrange ColorValue( "#ff8c00" )
ColorValue( "DARKORANGE" )
RGBA( 255, 140, 0, 1 ) darkorange.
Color. DarkOrchid ColorValue( "#9932cc" )
ColorValue( "DarkOrchid" )
RGBA( 153, 50, 204, 1 ) darkorchid.
Color. 어둡게 ColorValue( "#8b0000")
ColorValue( "darkred")
RGBA( 139, 0, 0, 1 ) darkred.
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 ) darkslateblue.
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 ) darkturquoise.
Color. DarkViolet ColorValue( "#9400d3" )
ColorValue( "DarkViolet" )
RGBA( 148, 0, 211, 1 ) darkviolet.
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 ) dimgrey.
Color. 다저블루 ColorValue( "#1e90ff" )
ColorValue( "dodgerblue" )
RGBA( 30, 144, 255, 1 ) dodgerblue.
Color. FireBrick ColorValue( "#b22222" )
ColorValue( "FireBrick" )
RGBA( 178, 34, 34, 1 ) firebrick.
Color. 플로럴화이트 ColorValue( "#fffaf0" )
ColorValue( "FLORALWHITE" )
RGBA( 255, 250, 240, 1 ) floralwhite.
Color. ForestGreen ColorValue( "#228b22" )
ColorValue( "ForestGreen" )
RGBA( 34, 139, 34, 1 ) forestgreen.
Color. 자홍색 ColorValue( "#ff00ff" )
ColorValue( "fuchsia" )
RGBA( 255, 0, 255, 1 ) fuchsia.
Color. 게인즈보로 ColorValue( "#dcdcdc" )
ColorValue( "Gainsboro" )
RGBA( 220, 220, 220, 1 ) gainsboro.
Color. GhostWhite ColorValue( "#f8f8ff" )
ColorValue( "GHOSTWHITE" )
RGBA( 248, 248, 255, 1 ) ghostwhite.
Color. 금 ColorValue( "#ffd700" )
ColorValue( "Gold" )
RGBA( 255, 215, 0, 1 ) gold.
Color. GoldenRod ColorValue( "#daa520")
ColorValue( "goldenrod" )
RGBA( 218, 165, 32, 1 ) goldenrod.
Color. 회색 ColorValue( "#808080" )
ColorValue( "회색" )
RGBA( 128, 128, 128, 1 ) gray.
Color. 녹색 ColorValue( "#008000" )
ColorValue( "GREEN" )
RGBA( 0, 128, 0, 1 ) green.
Color. GreenYellow ColorValue( "#adff2f")
ColorValue( "GreenYellow" )
RGBA( 173, 255, 47, 1 ) greenyellow.
Color. 회색 ColorValue( "#808080" )
ColorValue( "회색" )
RGBA( 128, 128, 128, 1 ) grey.
Color. 감로 ColorValue( "#f0fff0" )
ColorValue( "Honeydew" )
RGBA( 240, 255, 240, 1 ) honeydew.
Color. 핫핑크 ColorValue( "#ff69b4")
ColorValue( "HOTPINK" )
RGBA( 255, 105, 180, 1 ) hotpink.
Color. 인디언레드 ColorValue( "#cd5c5c" )
ColorValue( "IndianRed" )
RGBA( 205, 92, 92, 1 ) indianred.
Color. 남빛 ColorValue( "#4b0082" )
ColorValue( "indigo")
RGBA( 75, 0, 130, 1 ) indigo.
Color. 상아 ColorValue( "#fffff0" )
ColorValue( "Ivory" )
RGBA( 255, 255, 240, 1 ) ivory.
Color. 카키색 ColorValue( "#f0e68c" )
ColorValue( "KHAKI" )
RGBA( 240, 230, 140, 1 ) khaki.
Color. 라벤더 ColorValue( "#e6e6fa")
ColorValue( "Lavender")
RGBA( 230, 230, 250, 1 ) lavender.
Color. 라벤더블루시 ColorValue( "#fff0f5")
ColorValue( "lavenderblush" )
RGBA( 255, 240, 245, 1 ) lavenderblush.
Color. LawnGreen ColorValue( "#7cfc00" )
ColorValue( "LawnGreen" )
RGBA( 124, 252, 0, 1 ) lawngreen.
Color. LemonChiffon ColorValue( "#fffacd" )
ColorValue( "LEMONCHIFFON" )
RGBA( 255, 250, 205, 1 ) lemonchiffon.
Color. LightBlue ColorValue( "#add8e6")
ColorValue( "LightBlue" )
RGBA( 173, 216, 230, 1 ) lightblue.
Color. LightCoral ColorValue( "#f08080")
ColorValue( "lightcoral")
RGBA( 240, 128, 128, 1 ) lightcoral.
Color. LightCyan ColorValue( "#e0ffff" )
ColorValue( "LightCyan" )
RGBA( 224, 255, 255, 1 ) lightcyan.
Color. LightGoldenRodYellow ColorValue( "#fafad2" )
ColorValue( "lightgoldenrodyellow" )
RGBA( 250, 250, 210, 1 ) lightgoldenrodyellow.
Color. LightGray ColorValue( "#d3d3d3" )
ColorValue( "LightGray" )
RGBA( 211, 211, 211, 1 ) lightgray.
Color. LightGreen ColorValue( "#90ee90" )
ColorValue( "lightgreen")
RGBA( 144, 238, 144, 1 ) lightgreen.
Color. LightGrey ColorValue( "#d3d3d3" )
ColorValue( "LightGrey" )
RGBA( 211, 211, 211, 1 ) lightgrey.
Color. LightPink ColorValue( "#ffb6c1")
ColorValue( "LIGHTPINK" )
RGBA( 255, 182, 193, 1 ) lightpink.
Color. LightSalmon ColorValue( "#ffa07a")
ColorValue( "LightSalmon" )
RGBA( 255, 160, 122, 1 ) lightsalmon.
Color. LightSeaGreen ColorValue( "#20b2aa" )
ColorValue( "lightseagreen" )
RGBA( 32, 178, 170, 1 ) lightseagreen.
Color. LightSkyBlue ColorValue( "#87cefa")
ColorValue( "LightSkyBlue" )
RGBA( 135, 206, 250, 1 ) lightskyblue.
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 ) lightsteelblue.
Color. LightYellow ColorValue( "#ffffe0" )
ColorValue( "LightYellow" )
RGBA( 255, 255, 224, 1 ) lightyellow.
Color. 라임 ColorValue( "#00ff00")
ColorValue( "LIME" )
RGBA( 0, 255, 0, 1 ) lime.
Color. LimeGreen ColorValue( "#32cd32" )
ColorValue( "LimeGreen" )
RGBA( 50, 205, 50, 1 ) limegreen.
Color. 리넨 ColorValue( "#faf0e6" )
ColorValue( "linen" )
RGBA( 250, 240, 230, 1 ) linen.
Color. 자홍색 ColorValue( "#ff00ff" )
ColorValue( "Magenta" )
RGBA( 255, 0, 255, 1 ) magenta.
Color. 적갈색 ColorValue( "#800000" )
ColorValue( "MAROON" )
RGBA( 128, 0, 0, 1 ) maroon.
Color. MediumAquamarine ColorValue( "#66cdaa")
ColorValue( "MediumAquamarine" )
RGBA( 102, 205, 170, 1 ) mediumaquamarine.
Color. MediumBlue ColorValue( "#0000cd" )
ColorValue( "mediumblue")
RGBA( 0, 0, 205, 1 ) mediumblue.
Color. MediumOrchid ColorValue( "#ba55d3")
ColorValue( "MediumOrchid" )
RGBA( 186, 85, 211, 1 ) mediumorchid.
Color. MediumPurple ColorValue( "#9370db")
ColorValue( "MEDIUMPURPLE" )
RGBA( 147, 112, 219, 1 ) mediumpurple.
Color. MediumSeaGreen ColorValue( "#3cb371")
ColorValue( "MediumSeaGreen" )
RGBA( 60, 179, 113, 1 ) mediumseagreen.
Color. MediumSlateBlue ColorValue( "#7b68ee")
ColorValue( "mediumslateblue" )
RGBA( 123, 104, 238, 1 ) mediumslateblue.
Color. MediumSpringGreen ColorValue( "#00fa9a")
ColorValue( "MediumSpringGreen" )
RGBA( 0, 250, 154, 1 ) mediumspringgreen.
Color. MediumTurquoise ColorValue( "#48d1cc")
ColorValue( "MEDIUMTURQUOISE" )
RGBA( 72, 209, 204, 1 ) mediumturquoise.
Color. MediumVioletRed ColorValue( "#c71585")
ColorValue( "MediumVioletRed" )
RGBA( 199, 21, 133, 1 ) mediumvioletred.
Color. MidnightBlue ColorValue( "#191970" )
ColorValue( "midnightblue" )
RGBA( 25, 25, 112, 1 ) midnightblue.
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. 모카신 ColorValue( "#ffe4b5" )
ColorValue( "Moccasin" )
RGBA( 255, 228, 181, 1 ) moccasin.
Color. 나바호화이트 ColorValue( "#ffdead")
ColorValue( "navajowhite" )
RGBA( 255, 222, 173, 1 ) navajowhite.
Color. 해군 ColorValue( "#000080" )
ColorValue( "Navy" )
RGBA( 0, 0, 128, 1 ) navy.
Color. OldLace ColorValue( "#fdf5e6")
ColorValue( "OLDLACE" )
RGBA( 253, 245, 230, 1 ) oldlace.
Color. 올리브 ColorValue( "#808000" )
ColorValue( "Olive" )
RGBA( 128, 128, 0, 1 ) olive.
Color. OliveDrab ColorValue( "#6b8e23" )
ColorValue( "olivedrab" )
RGBA( 107, 142, 35, 1 ) olivedrab.
Color. 오렌지 ColorValue( "#ffa500")
ColorValue( "Orange" )
RGBA( 255, 165, 0, 1 ) orange.
Color. OrangeRed ColorValue( "#ff4500" )
ColorValue( "ORANGERED" )
RGBA( 255, 69, 0, 1 ) orangered.
Color. 난초 ColorValue( "#da70d6" )
ColorValue( "Orchid" )
RGBA( 218, 112, 214, 1 ) orchid.
Color. PaleGoldenRod ColorValue( "#eee8aa" )
ColorValue( "palegoldenrod" )
RGBA( 238, 232, 170, 1 ) palegoldenrod.
Color. PaleGreen ColorValue( "#98fb98")
ColorValue( "PaleGreen" )
RGBA( 152, 251, 152, 1 ) palegreen.
Color. 팔레투르쿼이즈 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 ) peachpuff.
Color. 페루 ColorValue( "#cd853f")
ColorValue( "페루" )
RGBA( 205, 133, 63, 1 ) peru.
Color. 분홍색 ColorValue( "#ffc0cb")
ColorValue( "Pink" )
RGBA( 255, 192, 203, 1 ) pink.
Color. 자두 ColorValue( "#dda0dd" )
ColorValue( "plum" )
RGBA( 221, 160, 221, 1 ) plum.
Color. PowderBlue ColorValue( "#b0e0e6")
ColorValue( "PowderBlue" )
RGBA( 176, 224, 230, 1 ) powderblue.
Color. 보라색 ColorValue( "#800080" )
ColorValue( "PURPLE" )
RGBA( 128, 0, 128, 1 ) purple.
Color. 빨강 ColorValue( "#ff0000" )
ColorValue( "Red" )
RGBA( 255, 0, 0, 1 ) red.
Color. RosyBrown ColorValue( "#bc8f8f" )
ColorValue( "rosybrown" )
RGBA( 188, 143, 143, 1 ) rosybrown.
Color. RoyalBlue ColorValue( "#4169e1" )
ColorValue( "RoyalBlue" )
RGBA( 65, 105, 225, 1 ) royalblue.
Color. 새들브롤 ColorValue( "#8b4513")
ColorValue( "SADDLEBROWN" )
RGBA( 139, 69, 19, 1 ) saddlebrown.
Color. 연어 ColorValue( "#fa8072" )
ColorValue( "Salmon" )
RGBA( 250, 128, 114, 1 ) salmon.
Color. 샌디브룸 ColorValue( "#f4a460")
ColorValue( "sandybrown" )
RGBA( 244, 164, 96, 1 ) sandybrown.
Color. SeaGreen ColorValue( "#2e8b57")
ColorValue( "SeaGreen" )
RGBA( 46, 139, 87, 1 ) seagreen.
Color. 조개 ColorValue( "#fff5ee" )
ColorValue( "SEASHELL" )
RGBA( 255, 245, 238, 1 ) seashell.
Color. 시에나 주 ColorValue( "#a0522d" )
ColorValue( "Sienna" )
RGBA( 160, 82, 45, 1 ) sienna.
Color. 은 ColorValue( "#c0c0c0")
ColorValue( "silver" )
RGBA( 192, 192, 192, 1 ) silver.
Color. SkyBlue ColorValue( "#87ceeb" )
ColorValue( "SkyBlue" )
RGBA( 135, 206, 235, 1 ) skyblue.
Color. SlateBlue ColorValue( "#6a5acd" )
ColorValue( "SLATEBLUE" )
RGBA( 106, 90, 205, 1 ) slateblue.
Color. 슬레이트그레이 ColorValue( "#708090" )
ColorValue( "SlateGray" )
RGBA( 112, 128, 144, 1 ) slategray.
Color. SlateGrey ColorValue( "#708090" )
ColorValue( "slategrey" )
RGBA( 112, 128, 144, 1 ) slategrey.
Color. 눈 ColorValue( "#fffafa" )
ColorValue( "Snow" )
RGBA( 255, 250, 250, 1 ) snow.
Color. SpringGreen ColorValue( "#00ff7f" )
ColorValue( "SPRINGGREEN" )
RGBA( 0, 255, 127, 1 ) springgreen.
Color. SteelBlue ColorValue( "#4682b4" )
ColorValue( "SteelBlue" )
RGBA( 70, 130, 180, 1 ) steelblue.
Color. 탄 ColorValue( "#d2b48c")
ColorValue( "tan")
RGBA( 210, 180, 140, 1 ) tan.
Color. 청록 ColorValue( "#008080" )
ColorValue( "Teal")
RGBA( 0, 128, 128, 1 ) teal.
Color. 엉겅퀴 ColorValue( "#d8bfd8")
ColorValue( "엉겅퀴")
RGBA( 216, 191, 216, 1 ) thistle.
Color. 토마토 ColorValue( "#ff6347" )
ColorValue( "토마토")
RGBA( 255, 99, 71, 1 ) tomato.
Color. 투명한 ColorValue( "#00000000" )
ColorValue( "Transparent" )
RGBA( 0, 0, 0, 0 ) transparent.
Color. 터키옥 ColorValue( "#40e0d0" )
ColorValue( "청록색" )
RGBA( 64, 224, 208, 1 ) turquoise.
Color. 보라색 ColorValue( "#ee82ee")
ColorValue( "바이올렛" )
RGBA( 238, 130, 238, 1 ) violet.
Color. 밀 ColorValue( "#f5deb3" )
ColorValue( "WHEAT" )
RGBA( 245, 222, 179, 1 ) wheat.
Color. 하얀 ColorValue( "#ffffff")
ColorValue( "White" )
RGBA( 255, 255, 255, 1 ) white.
Color. WhiteSmoke ColorValue( "#f5f5f5")
ColorValue( "whitesmoke" )
RGBA( 245, 245, 245, 1 ) whitesmoke.
Color. 황색 ColorValue( "#ffff00" )
ColorValue( "노란색")
RGBA( 255, 255, 0, 1 ) yellow.
Color. YellowGreen ColorValue( "#9acd32" )
ColorValue( "YELLOWGREEN" )
RGBA( 154, 205, 50, 1 ) yellowgreen.