Description
The Color.Blue
field represents a fully opaque pure blue color. It is a static member of the Color
struct, meaning it can be accessed without instantiating a Color
object. This field is useful when you need a standard blue color in your application.
Usage
To use the Color.Blue
field, simply reference it directly from the Color
struct. This field is read-only and provides a convenient way to access a predefined blue color.
Example
// Example of using Color.Blue
Color myColor = Color.Blue;
// Use myColor in your application, for example, setting a material color
myMaterial.Color = myColor;