Make font color transparent

How would I change a Font color to one that is totally transparent?

Right now I have

    public Color fontColor = Color.white;\

You can use Color.clear, which is black and transparent – represents (0,0,0,0). You can set it in the inspector for that class with your public variable. You can create your own color using “fontcolor = new Color(1,1,1,0)” which is white and clear.