# LerpUnclamped(Color32, Color32, 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 Color32 LerpUnclamped(Color32 a, Color32 b, float t)
```

### Parameters

**** (\[Color32]\(/engine/6000.0/script-reference/unityengine/color32)): **** (\[Color32]\(/engine/6000.0/script-reference/unityengine/color32)): **** (\[float]\(https\://learn.microsoft.com/dotnet/api/system.single)):&#x20;

### Returns

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

### Remarks

When t is 0 returns a. When t is 1 returns b.

Additional Resources: [Color32.Lerp](/engine/6000.0/script-reference/unityengine/color32/lerp.md).
