# cursorColor

> The color of the cursor in text fields.

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine](/engine/6000.3/script-reference/unityengine.md)
* **Assembly:** UnityEngine.IMGUIModule

```csharp
public Color cursorColor { get; set; }
```

### Examples

```csharp
using UnityEngine;

public class Example : MonoBehaviour
{
    // Set the cursor color to Cyan.
    string str = "This is a string with \n two lines of text";

    void OnGUI()
    {
        GUI.skin.settings.cursorColor = Color.cyan;
        str = GUILayout.TextArea(str);
    }
}
```
