# desiredColorSpace

> Desired color space (Read Only).

## Definition

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

```csharp
public static ColorSpace desiredColorSpace { get; }
```

### Remarks

This is the desired color space based on player settings ([PlayerSettings.colorSpace](/engine/6000.5/script-reference/unityeditor/playersettings/colorspace.md)). Note that if the platform or hardware does not support the given color space, the actually used color space might end up being different. Use [QualitySettings.activeColorSpace](/engine/6000.5/script-reference/unityengine/qualitysettings/activecolorspace.md) to check for that.

Additional Resources: Linear and Gamma rendering, [ColorSpace](/engine/6000.5/script-reference/unityengine/colorspace.md), [QualitySettings.activeColorSpace](/engine/6000.5/script-reference/unityengine/qualitysettings/activecolorspace.md).
