This version of Unity is unsupported.

GUIStyle.focused

Switch to Manual
public GUIStyleState focused;

Description

Rendering settings for when the element has keyboard focus.

using UnityEngine;

public class Example : MonoBehaviour { void OnGUI() { GUI.skin.button.focused.textColor = Color.blue; } }