Change Transparency of GUI

Is the a simple way to change the transparency of the default GUI skin? It is just a bit too transparent for my application.

Thanks.

Before your GUI code, put

GUI.color.a = 0.5;

or any other value between 0 and 1.

Thanks.