# operator +(Color, Color)

> Adds two colors together. Each component is added separately.

## Definition

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

```csharp
public static Color operator +(Color a, Color b)
```

### Parameters

**** (\[Color]\(/engine/6000.5/script-reference/unityengine/color)): **** (\[Color]\(/engine/6000.5/script-reference/unityengine/color)):&#x20;

### Returns

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

### Examples

```csharp
using UnityEngine;

public class Example : MonoBehaviour
{
    void Start()
    {
        Color magenta = Color.blue + Color.red;
    }
}
```
