# none

> Shortcut for an empty GUIStyle.

## Definition

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

```csharp
public static GUIStyle none { get; }
```

### Remarks

This style contains no decoration and just renders everything in the default font.

### Examples

```csharp
using UnityEngine;

public class Example : MonoBehaviour
{
    void OnGUI()
    {
        // Make a button with no decoration
        GUI.Button(new Rect(0, 0, 250, 100), "Basic Button", GUIStyle.none);
    }
}
```
