Change fontsize on GUI textfield and GUI button

I want to make the text bigger in my GUI. I tried searching for a answer but i cant find any. So im asking for help.

Hi, you are looking for GUIStyle.

  1. Define guistyle

  2. Edit params from inspector

  3. Assign style to your gui element

    public GUIStyle style;

    private void OnGUI(){
    GUI.Label(new Rect(0,0,100,25), “Hi”, style);
    }