oh dear
This commit is contained in:
@@ -0,0 +1,708 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Drawing
|
||||
{
|
||||
/// <summary>Specifies the known system colors.</summary>
|
||||
// Token: 0x02000025 RID: 37
|
||||
[Token(Token = "0x2000025")]
|
||||
public enum KnownColor
|
||||
{
|
||||
/// <summary>The system-defined color of the active window's border.</summary>
|
||||
// Token: 0x04000042 RID: 66
|
||||
[Token(Token = "0x4000042")]
|
||||
ActiveBorder = 1,
|
||||
/// <summary>The system-defined color of the background of the active window's title bar.</summary>
|
||||
// Token: 0x04000043 RID: 67
|
||||
[Token(Token = "0x4000043")]
|
||||
ActiveCaption,
|
||||
/// <summary>The system-defined color of the text in the active window's title bar.</summary>
|
||||
// Token: 0x04000044 RID: 68
|
||||
[Token(Token = "0x4000044")]
|
||||
ActiveCaptionText,
|
||||
/// <summary>The system-defined color of the application workspace. The application workspace is the area in a multiple-document view that is not being occupied by documents.</summary>
|
||||
// Token: 0x04000045 RID: 69
|
||||
[Token(Token = "0x4000045")]
|
||||
AppWorkspace,
|
||||
/// <summary>The system-defined face color of a 3-D element.</summary>
|
||||
// Token: 0x04000046 RID: 70
|
||||
[Token(Token = "0x4000046")]
|
||||
Control,
|
||||
/// <summary>The system-defined shadow color of a 3-D element. The shadow color is applied to parts of a 3-D element that face away from the light source.</summary>
|
||||
// Token: 0x04000047 RID: 71
|
||||
[Token(Token = "0x4000047")]
|
||||
ControlDark,
|
||||
/// <summary>The system-defined color that is the dark shadow color of a 3-D element. The dark shadow color is applied to the parts of a 3-D element that are the darkest color.</summary>
|
||||
// Token: 0x04000048 RID: 72
|
||||
[Token(Token = "0x4000048")]
|
||||
ControlDarkDark,
|
||||
/// <summary>The system-defined color that is the light color of a 3-D element. The light color is applied to parts of a 3-D element that face the light source.</summary>
|
||||
// Token: 0x04000049 RID: 73
|
||||
[Token(Token = "0x4000049")]
|
||||
ControlLight,
|
||||
/// <summary>The system-defined highlight color of a 3-D element. The highlight color is applied to the parts of a 3-D element that are the lightest color.</summary>
|
||||
// Token: 0x0400004A RID: 74
|
||||
[Token(Token = "0x400004A")]
|
||||
ControlLightLight,
|
||||
/// <summary>The system-defined color of text in a 3-D element.</summary>
|
||||
// Token: 0x0400004B RID: 75
|
||||
[Token(Token = "0x400004B")]
|
||||
ControlText,
|
||||
/// <summary>The system-defined color of the desktop.</summary>
|
||||
// Token: 0x0400004C RID: 76
|
||||
[Token(Token = "0x400004C")]
|
||||
Desktop,
|
||||
/// <summary>The system-defined color of dimmed text. Items in a list that are disabled are displayed in dimmed text.</summary>
|
||||
// Token: 0x0400004D RID: 77
|
||||
[Token(Token = "0x400004D")]
|
||||
GrayText,
|
||||
/// <summary>The system-defined color of the background of selected items. This includes selected menu items as well as selected text.</summary>
|
||||
// Token: 0x0400004E RID: 78
|
||||
[Token(Token = "0x400004E")]
|
||||
Highlight,
|
||||
/// <summary>The system-defined color of the text of selected items.</summary>
|
||||
// Token: 0x0400004F RID: 79
|
||||
[Token(Token = "0x400004F")]
|
||||
HighlightText,
|
||||
/// <summary>The system-defined color used to designate a hot-tracked item. Single-clicking a hot-tracked item executes the item.</summary>
|
||||
// Token: 0x04000050 RID: 80
|
||||
[Token(Token = "0x4000050")]
|
||||
HotTrack,
|
||||
/// <summary>The system-defined color of an inactive window's border.</summary>
|
||||
// Token: 0x04000051 RID: 81
|
||||
[Token(Token = "0x4000051")]
|
||||
InactiveBorder,
|
||||
/// <summary>The system-defined color of the background of an inactive window's title bar.</summary>
|
||||
// Token: 0x04000052 RID: 82
|
||||
[Token(Token = "0x4000052")]
|
||||
InactiveCaption,
|
||||
/// <summary>The system-defined color of the text in an inactive window's title bar.</summary>
|
||||
// Token: 0x04000053 RID: 83
|
||||
[Token(Token = "0x4000053")]
|
||||
InactiveCaptionText,
|
||||
/// <summary>The system-defined color of the background of a ToolTip.</summary>
|
||||
// Token: 0x04000054 RID: 84
|
||||
[Token(Token = "0x4000054")]
|
||||
Info,
|
||||
/// <summary>The system-defined color of the text of a ToolTip.</summary>
|
||||
// Token: 0x04000055 RID: 85
|
||||
[Token(Token = "0x4000055")]
|
||||
InfoText,
|
||||
/// <summary>The system-defined color of a menu's background.</summary>
|
||||
// Token: 0x04000056 RID: 86
|
||||
[Token(Token = "0x4000056")]
|
||||
Menu,
|
||||
/// <summary>The system-defined color of a menu's text.</summary>
|
||||
// Token: 0x04000057 RID: 87
|
||||
[Token(Token = "0x4000057")]
|
||||
MenuText,
|
||||
/// <summary>The system-defined color of the background of a scroll bar.</summary>
|
||||
// Token: 0x04000058 RID: 88
|
||||
[Token(Token = "0x4000058")]
|
||||
ScrollBar,
|
||||
/// <summary>The system-defined color of the background in the client area of a window.</summary>
|
||||
// Token: 0x04000059 RID: 89
|
||||
[Token(Token = "0x4000059")]
|
||||
Window,
|
||||
/// <summary>The system-defined color of a window frame.</summary>
|
||||
// Token: 0x0400005A RID: 90
|
||||
[Token(Token = "0x400005A")]
|
||||
WindowFrame,
|
||||
/// <summary>The system-defined color of the text in the client area of a window.</summary>
|
||||
// Token: 0x0400005B RID: 91
|
||||
[Token(Token = "0x400005B")]
|
||||
WindowText,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400005C RID: 92
|
||||
[Token(Token = "0x400005C")]
|
||||
Transparent,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400005D RID: 93
|
||||
[Token(Token = "0x400005D")]
|
||||
AliceBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400005E RID: 94
|
||||
[Token(Token = "0x400005E")]
|
||||
AntiqueWhite,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400005F RID: 95
|
||||
[Token(Token = "0x400005F")]
|
||||
Aqua,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000060 RID: 96
|
||||
[Token(Token = "0x4000060")]
|
||||
Aquamarine,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000061 RID: 97
|
||||
[Token(Token = "0x4000061")]
|
||||
Azure,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000062 RID: 98
|
||||
[Token(Token = "0x4000062")]
|
||||
Beige,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000063 RID: 99
|
||||
[Token(Token = "0x4000063")]
|
||||
Bisque,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000064 RID: 100
|
||||
[Token(Token = "0x4000064")]
|
||||
Black,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000065 RID: 101
|
||||
[Token(Token = "0x4000065")]
|
||||
BlanchedAlmond,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000066 RID: 102
|
||||
[Token(Token = "0x4000066")]
|
||||
Blue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000067 RID: 103
|
||||
[Token(Token = "0x4000067")]
|
||||
BlueViolet,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000068 RID: 104
|
||||
[Token(Token = "0x4000068")]
|
||||
Brown,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000069 RID: 105
|
||||
[Token(Token = "0x4000069")]
|
||||
BurlyWood,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400006A RID: 106
|
||||
[Token(Token = "0x400006A")]
|
||||
CadetBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400006B RID: 107
|
||||
[Token(Token = "0x400006B")]
|
||||
Chartreuse,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400006C RID: 108
|
||||
[Token(Token = "0x400006C")]
|
||||
Chocolate,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400006D RID: 109
|
||||
[Token(Token = "0x400006D")]
|
||||
Coral,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400006E RID: 110
|
||||
[Token(Token = "0x400006E")]
|
||||
CornflowerBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400006F RID: 111
|
||||
[Token(Token = "0x400006F")]
|
||||
Cornsilk,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000070 RID: 112
|
||||
[Token(Token = "0x4000070")]
|
||||
Crimson,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000071 RID: 113
|
||||
[Token(Token = "0x4000071")]
|
||||
Cyan,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000072 RID: 114
|
||||
[Token(Token = "0x4000072")]
|
||||
DarkBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000073 RID: 115
|
||||
[Token(Token = "0x4000073")]
|
||||
DarkCyan,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000074 RID: 116
|
||||
[Token(Token = "0x4000074")]
|
||||
DarkGoldenrod,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000075 RID: 117
|
||||
[Token(Token = "0x4000075")]
|
||||
DarkGray,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000076 RID: 118
|
||||
[Token(Token = "0x4000076")]
|
||||
DarkGreen,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000077 RID: 119
|
||||
[Token(Token = "0x4000077")]
|
||||
DarkKhaki,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000078 RID: 120
|
||||
[Token(Token = "0x4000078")]
|
||||
DarkMagenta,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000079 RID: 121
|
||||
[Token(Token = "0x4000079")]
|
||||
DarkOliveGreen,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400007A RID: 122
|
||||
[Token(Token = "0x400007A")]
|
||||
DarkOrange,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400007B RID: 123
|
||||
[Token(Token = "0x400007B")]
|
||||
DarkOrchid,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400007C RID: 124
|
||||
[Token(Token = "0x400007C")]
|
||||
DarkRed,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400007D RID: 125
|
||||
[Token(Token = "0x400007D")]
|
||||
DarkSalmon,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400007E RID: 126
|
||||
[Token(Token = "0x400007E")]
|
||||
DarkSeaGreen,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400007F RID: 127
|
||||
[Token(Token = "0x400007F")]
|
||||
DarkSlateBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000080 RID: 128
|
||||
[Token(Token = "0x4000080")]
|
||||
DarkSlateGray,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000081 RID: 129
|
||||
[Token(Token = "0x4000081")]
|
||||
DarkTurquoise,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000082 RID: 130
|
||||
[Token(Token = "0x4000082")]
|
||||
DarkViolet,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000083 RID: 131
|
||||
[Token(Token = "0x4000083")]
|
||||
DeepPink,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000084 RID: 132
|
||||
[Token(Token = "0x4000084")]
|
||||
DeepSkyBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000085 RID: 133
|
||||
[Token(Token = "0x4000085")]
|
||||
DimGray,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000086 RID: 134
|
||||
[Token(Token = "0x4000086")]
|
||||
DodgerBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000087 RID: 135
|
||||
[Token(Token = "0x4000087")]
|
||||
Firebrick,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000088 RID: 136
|
||||
[Token(Token = "0x4000088")]
|
||||
FloralWhite,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000089 RID: 137
|
||||
[Token(Token = "0x4000089")]
|
||||
ForestGreen,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400008A RID: 138
|
||||
[Token(Token = "0x400008A")]
|
||||
Fuchsia,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400008B RID: 139
|
||||
[Token(Token = "0x400008B")]
|
||||
Gainsboro,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400008C RID: 140
|
||||
[Token(Token = "0x400008C")]
|
||||
GhostWhite,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400008D RID: 141
|
||||
[Token(Token = "0x400008D")]
|
||||
Gold,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400008E RID: 142
|
||||
[Token(Token = "0x400008E")]
|
||||
Goldenrod,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400008F RID: 143
|
||||
[Token(Token = "0x400008F")]
|
||||
Gray,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000090 RID: 144
|
||||
[Token(Token = "0x4000090")]
|
||||
Green,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000091 RID: 145
|
||||
[Token(Token = "0x4000091")]
|
||||
GreenYellow,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000092 RID: 146
|
||||
[Token(Token = "0x4000092")]
|
||||
Honeydew,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000093 RID: 147
|
||||
[Token(Token = "0x4000093")]
|
||||
HotPink,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000094 RID: 148
|
||||
[Token(Token = "0x4000094")]
|
||||
IndianRed,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000095 RID: 149
|
||||
[Token(Token = "0x4000095")]
|
||||
Indigo,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000096 RID: 150
|
||||
[Token(Token = "0x4000096")]
|
||||
Ivory,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000097 RID: 151
|
||||
[Token(Token = "0x4000097")]
|
||||
Khaki,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000098 RID: 152
|
||||
[Token(Token = "0x4000098")]
|
||||
Lavender,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x04000099 RID: 153
|
||||
[Token(Token = "0x4000099")]
|
||||
LavenderBlush,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400009A RID: 154
|
||||
[Token(Token = "0x400009A")]
|
||||
LawnGreen,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400009B RID: 155
|
||||
[Token(Token = "0x400009B")]
|
||||
LemonChiffon,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400009C RID: 156
|
||||
[Token(Token = "0x400009C")]
|
||||
LightBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400009D RID: 157
|
||||
[Token(Token = "0x400009D")]
|
||||
LightCoral,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400009E RID: 158
|
||||
[Token(Token = "0x400009E")]
|
||||
LightCyan,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x0400009F RID: 159
|
||||
[Token(Token = "0x400009F")]
|
||||
LightGoldenrodYellow,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000A0 RID: 160
|
||||
[Token(Token = "0x40000A0")]
|
||||
LightGray,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000A1 RID: 161
|
||||
[Token(Token = "0x40000A1")]
|
||||
LightGreen,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000A2 RID: 162
|
||||
[Token(Token = "0x40000A2")]
|
||||
LightPink,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000A3 RID: 163
|
||||
[Token(Token = "0x40000A3")]
|
||||
LightSalmon,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000A4 RID: 164
|
||||
[Token(Token = "0x40000A4")]
|
||||
LightSeaGreen,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000A5 RID: 165
|
||||
[Token(Token = "0x40000A5")]
|
||||
LightSkyBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000A6 RID: 166
|
||||
[Token(Token = "0x40000A6")]
|
||||
LightSlateGray,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000A7 RID: 167
|
||||
[Token(Token = "0x40000A7")]
|
||||
LightSteelBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000A8 RID: 168
|
||||
[Token(Token = "0x40000A8")]
|
||||
LightYellow,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000A9 RID: 169
|
||||
[Token(Token = "0x40000A9")]
|
||||
Lime,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000AA RID: 170
|
||||
[Token(Token = "0x40000AA")]
|
||||
LimeGreen,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000AB RID: 171
|
||||
[Token(Token = "0x40000AB")]
|
||||
Linen,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000AC RID: 172
|
||||
[Token(Token = "0x40000AC")]
|
||||
Magenta,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000AD RID: 173
|
||||
[Token(Token = "0x40000AD")]
|
||||
Maroon,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000AE RID: 174
|
||||
[Token(Token = "0x40000AE")]
|
||||
MediumAquamarine,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000AF RID: 175
|
||||
[Token(Token = "0x40000AF")]
|
||||
MediumBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000B0 RID: 176
|
||||
[Token(Token = "0x40000B0")]
|
||||
MediumOrchid,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000B1 RID: 177
|
||||
[Token(Token = "0x40000B1")]
|
||||
MediumPurple,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000B2 RID: 178
|
||||
[Token(Token = "0x40000B2")]
|
||||
MediumSeaGreen,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000B3 RID: 179
|
||||
[Token(Token = "0x40000B3")]
|
||||
MediumSlateBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000B4 RID: 180
|
||||
[Token(Token = "0x40000B4")]
|
||||
MediumSpringGreen,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000B5 RID: 181
|
||||
[Token(Token = "0x40000B5")]
|
||||
MediumTurquoise,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000B6 RID: 182
|
||||
[Token(Token = "0x40000B6")]
|
||||
MediumVioletRed,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000B7 RID: 183
|
||||
[Token(Token = "0x40000B7")]
|
||||
MidnightBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000B8 RID: 184
|
||||
[Token(Token = "0x40000B8")]
|
||||
MintCream,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000B9 RID: 185
|
||||
[Token(Token = "0x40000B9")]
|
||||
MistyRose,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000BA RID: 186
|
||||
[Token(Token = "0x40000BA")]
|
||||
Moccasin,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000BB RID: 187
|
||||
[Token(Token = "0x40000BB")]
|
||||
NavajoWhite,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000BC RID: 188
|
||||
[Token(Token = "0x40000BC")]
|
||||
Navy,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000BD RID: 189
|
||||
[Token(Token = "0x40000BD")]
|
||||
OldLace,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000BE RID: 190
|
||||
[Token(Token = "0x40000BE")]
|
||||
Olive,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000BF RID: 191
|
||||
[Token(Token = "0x40000BF")]
|
||||
OliveDrab,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000C0 RID: 192
|
||||
[Token(Token = "0x40000C0")]
|
||||
Orange,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000C1 RID: 193
|
||||
[Token(Token = "0x40000C1")]
|
||||
OrangeRed,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000C2 RID: 194
|
||||
[Token(Token = "0x40000C2")]
|
||||
Orchid,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000C3 RID: 195
|
||||
[Token(Token = "0x40000C3")]
|
||||
PaleGoldenrod,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000C4 RID: 196
|
||||
[Token(Token = "0x40000C4")]
|
||||
PaleGreen,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000C5 RID: 197
|
||||
[Token(Token = "0x40000C5")]
|
||||
PaleTurquoise,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000C6 RID: 198
|
||||
[Token(Token = "0x40000C6")]
|
||||
PaleVioletRed,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000C7 RID: 199
|
||||
[Token(Token = "0x40000C7")]
|
||||
PapayaWhip,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000C8 RID: 200
|
||||
[Token(Token = "0x40000C8")]
|
||||
PeachPuff,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000C9 RID: 201
|
||||
[Token(Token = "0x40000C9")]
|
||||
Peru,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000CA RID: 202
|
||||
[Token(Token = "0x40000CA")]
|
||||
Pink,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000CB RID: 203
|
||||
[Token(Token = "0x40000CB")]
|
||||
Plum,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000CC RID: 204
|
||||
[Token(Token = "0x40000CC")]
|
||||
PowderBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000CD RID: 205
|
||||
[Token(Token = "0x40000CD")]
|
||||
Purple,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000CE RID: 206
|
||||
[Token(Token = "0x40000CE")]
|
||||
Red,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000CF RID: 207
|
||||
[Token(Token = "0x40000CF")]
|
||||
RosyBrown,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000D0 RID: 208
|
||||
[Token(Token = "0x40000D0")]
|
||||
RoyalBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000D1 RID: 209
|
||||
[Token(Token = "0x40000D1")]
|
||||
SaddleBrown,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000D2 RID: 210
|
||||
[Token(Token = "0x40000D2")]
|
||||
Salmon,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000D3 RID: 211
|
||||
[Token(Token = "0x40000D3")]
|
||||
SandyBrown,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000D4 RID: 212
|
||||
[Token(Token = "0x40000D4")]
|
||||
SeaGreen,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000D5 RID: 213
|
||||
[Token(Token = "0x40000D5")]
|
||||
SeaShell,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000D6 RID: 214
|
||||
[Token(Token = "0x40000D6")]
|
||||
Sienna,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000D7 RID: 215
|
||||
[Token(Token = "0x40000D7")]
|
||||
Silver,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000D8 RID: 216
|
||||
[Token(Token = "0x40000D8")]
|
||||
SkyBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000D9 RID: 217
|
||||
[Token(Token = "0x40000D9")]
|
||||
SlateBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000DA RID: 218
|
||||
[Token(Token = "0x40000DA")]
|
||||
SlateGray,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000DB RID: 219
|
||||
[Token(Token = "0x40000DB")]
|
||||
Snow,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000DC RID: 220
|
||||
[Token(Token = "0x40000DC")]
|
||||
SpringGreen,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000DD RID: 221
|
||||
[Token(Token = "0x40000DD")]
|
||||
SteelBlue,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000DE RID: 222
|
||||
[Token(Token = "0x40000DE")]
|
||||
Tan,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000DF RID: 223
|
||||
[Token(Token = "0x40000DF")]
|
||||
Teal,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000E0 RID: 224
|
||||
[Token(Token = "0x40000E0")]
|
||||
Thistle,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000E1 RID: 225
|
||||
[Token(Token = "0x40000E1")]
|
||||
Tomato,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000E2 RID: 226
|
||||
[Token(Token = "0x40000E2")]
|
||||
Turquoise,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000E3 RID: 227
|
||||
[Token(Token = "0x40000E3")]
|
||||
Violet,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000E4 RID: 228
|
||||
[Token(Token = "0x40000E4")]
|
||||
Wheat,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000E5 RID: 229
|
||||
[Token(Token = "0x40000E5")]
|
||||
White,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000E6 RID: 230
|
||||
[Token(Token = "0x40000E6")]
|
||||
WhiteSmoke,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000E7 RID: 231
|
||||
[Token(Token = "0x40000E7")]
|
||||
Yellow,
|
||||
/// <summary>A system-defined color.</summary>
|
||||
// Token: 0x040000E8 RID: 232
|
||||
[Token(Token = "0x40000E8")]
|
||||
YellowGreen,
|
||||
/// <summary>The system-defined face color of a 3-D element.</summary>
|
||||
// Token: 0x040000E9 RID: 233
|
||||
[Token(Token = "0x40000E9")]
|
||||
ButtonFace,
|
||||
/// <summary>The system-defined color that is the highlight color of a 3-D element. This color is applied to parts of a 3-D element that face the light source.</summary>
|
||||
// Token: 0x040000EA RID: 234
|
||||
[Token(Token = "0x40000EA")]
|
||||
ButtonHighlight,
|
||||
/// <summary>The system-defined color that is the shadow color of a 3-D element. This color is applied to parts of a 3-D element that face away from the light source.</summary>
|
||||
// Token: 0x040000EB RID: 235
|
||||
[Token(Token = "0x40000EB")]
|
||||
ButtonShadow,
|
||||
/// <summary>The system-defined color of the lightest color in the color gradient of an active window's title bar.</summary>
|
||||
// Token: 0x040000EC RID: 236
|
||||
[Token(Token = "0x40000EC")]
|
||||
GradientActiveCaption,
|
||||
/// <summary>The system-defined color of the lightest color in the color gradient of an inactive window's title bar.</summary>
|
||||
// Token: 0x040000ED RID: 237
|
||||
[Token(Token = "0x40000ED")]
|
||||
GradientInactiveCaption,
|
||||
/// <summary>The system-defined color of the background of a menu bar.</summary>
|
||||
// Token: 0x040000EE RID: 238
|
||||
[Token(Token = "0x40000EE")]
|
||||
MenuBar,
|
||||
/// <summary>The system-defined color used to highlight menu items when the menu appears as a flat menu.</summary>
|
||||
// Token: 0x040000EF RID: 239
|
||||
[Token(Token = "0x40000EF")]
|
||||
MenuHighlight
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user