# Color.Min

```csharp
static Color Min(in Color a, in Color b)
```

Returns a new color with each component being the minimum of the 2 given colors.

### Parameters

- `in a` (`Color`): Color A
- `in b` (`Color`): Color B

### Returns

`Color`: The new color with minimum values.

Declared in [Color](/api/Color).
Assembly: `Sandbox.System`.
