// Unity using UnityEngine; namespace GUPS.AntiCheat.Editor.Helper { /// /// Helper class for gui styles. /// public static class StyleHelper { /// /// Returns the style for a dark background. /// public static GUIStyle DarkBackground { get { GUIStyle var_GUIStyle = new GUIStyle(); var_GUIStyle.normal.background = TextureHelper.MakeTexture(1, 1, new Color(0.1f, 0.1f, 0.1f, 0.25f)); return var_GUIStyle; } } } }