Description
The Color.Cyan
field represents a fully opaque cyan 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 predefined cyan color in your application.
Usage
To use the Color.Cyan
field, simply reference it directly from the Color
struct. This field is read-only and provides a convenient way to access a standard cyan color without needing to manually define the RGBA values.
Example
// Example of using Color.Cyan
Color myCyanColor = Color.Cyan;
// Use myCyanColor in your application, for example, setting a material color
myMaterial.Color = myCyanColor;