static void SetSceneBackgroundColor()
        {
            Color lightBlue = ColorUtil.HexStringToColor("#93BAF4");

            EditorPrefsColors.SetSceneBackgroundColor(lightBlue);
        }
        static void SetPlayModeTintToLightRed()
        {
            Color lightRed = ColorUtil.HexStringToColor("#FFCDC5");

            EditorPrefsColors.SetPlaymodeTintColor(lightRed);
        }