# Lerp(Color, Color, float)

> Linearly interpolates between colors a and b by t.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine](/engine/6000.0/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public static Color Lerp(Color a, Color b, float t)
```

### Parameters

**** (\[Color]\(/engine/6000.0/script-reference/unityengine/color)): Color a.**** (\[Color]\(/engine/6000.0/script-reference/unityengine/color)): Color b.**** (\[float]\(https\://learn.microsoft.com/dotnet/api/system.single)): Float for combining a and b.

### Returns

| Type                                                          | Description |
| ------------------------------------------------------------- | ----------- |
| [Color](/engine/6000.0/script-reference/unityengine/color.md) |             |

### Remarks

t is clamped between 0 and 1. When t is 0 returns a. When t is 1 returns b.

The code sample sets the color of a GameObject's material to a value between white and black, based on the amount of time that has elapsed.

```csharp
using UnityEngine;

public class ColorLerp : MonoBehaviour
{
    Color lerpedColor = Color.white;
    Renderer renderer;

    void Start()
    {
        renderer = GetComponent<Renderer>();
    }

    void Update()
    {
        lerpedColor = Color.Lerp(Color.white, Color.black, Mathf.PingPong(Time.time, 1));
        renderer.material.color = lerpedColor;
    }
}
```

Additional Resources: [Color.LerpUnclamped](/engine/6000.0/script-reference/unityengine/color/lerpunclamped.md).
