using UnityEngine;
using System.Collections;
public class test : MonoBehaviour
{
void OnGUI()
{
GUIStyle style = new GUIStyle();
GUI.Label(new Rect(100, 100, 100, 20), "<size=20><color=brown>Hallo World</color></size>", style); }
}