UnityEditor.EditorStyles.InitSharedStyles C# (CSharp) Method

InitSharedStyles() private method

private InitSharedStyles ( ) : void
return void
        private void InitSharedStyles()
        {
            this.m_ColorPickerBox = this.GetStyle("ColorPickerBox");
            this.m_InspectorBig = this.GetStyle("In BigTitle");
            this.m_MiniLabel = this.GetStyle("miniLabel");
            this.m_LargeLabel = this.GetStyle("LargeLabel");
            this.m_BoldLabel = this.GetStyle("BoldLabel");
            this.m_MiniBoldLabel = this.GetStyle("MiniBoldLabel");
            this.m_WordWrappedLabel = this.GetStyle("WordWrappedLabel");
            this.m_WordWrappedMiniLabel = this.GetStyle("WordWrappedMiniLabel");
            this.m_WhiteLabel = this.GetStyle("WhiteLabel");
            this.m_WhiteMiniLabel = this.GetStyle("WhiteMiniLabel");
            this.m_WhiteLargeLabel = this.GetStyle("WhiteLargeLabel");
            this.m_WhiteBoldLabel = this.GetStyle("WhiteBoldLabel");
            this.m_MiniTextField = this.GetStyle("MiniTextField");
            this.m_RadioButton = this.GetStyle("Radio");
            this.m_MiniButton = this.GetStyle("miniButton");
            this.m_MiniButtonLeft = this.GetStyle("miniButtonLeft");
            this.m_MiniButtonMid = this.GetStyle("miniButtonMid");
            this.m_MiniButtonRight = this.GetStyle("miniButtonRight");
            this.m_Toolbar = this.GetStyle("toolbar");
            this.m_ToolbarButton = this.GetStyle("toolbarbutton");
            this.m_ToolbarPopup = this.GetStyle("toolbarPopup");
            this.m_ToolbarDropDown = this.GetStyle("toolbarDropDown");
            this.m_ToolbarTextField = this.GetStyle("toolbarTextField");
            this.m_ToolbarSearchField = this.GetStyle("ToolbarSeachTextField");
            this.m_ToolbarSearchFieldPopup = this.GetStyle("ToolbarSeachTextFieldPopup");
            this.m_ToolbarSearchFieldCancelButton = this.GetStyle("ToolbarSeachCancelButton");
            this.m_ToolbarSearchFieldCancelButtonEmpty = this.GetStyle("ToolbarSeachCancelButtonEmpty");
            this.m_SearchField = this.GetStyle("SearchTextField");
            this.m_SearchFieldCancelButton = this.GetStyle("SearchCancelButton");
            this.m_SearchFieldCancelButtonEmpty = this.GetStyle("SearchCancelButtonEmpty");
            this.m_HelpBox = this.GetStyle("HelpBox");
            this.m_AssetLabel = this.GetStyle("AssetLabel");
            this.m_AssetLabelPartial = this.GetStyle("AssetLabel Partial");
            this.m_AssetLabelIcon = this.GetStyle("AssetLabel Icon");
            this.m_SelectionRect = this.GetStyle("selectionRect");
            this.m_MinMaxHorizontalSliderThumb = this.GetStyle("MinMaxHorizontalSliderThumb");
            this.m_DropDownList = this.GetStyle("DropDownButton");
            this.m_BoldFont = this.GetStyle("BoldLabel").font;
            this.m_StandardFont = this.GetStyle("Label").font;
            this.m_MiniFont = this.GetStyle("MiniLabel").font;
            this.m_MiniBoldFont = this.GetStyle("MiniBoldLabel").font;
            this.m_ProgressBarBack = this.GetStyle("ProgressBarBack");
            this.m_ProgressBarBar = this.GetStyle("ProgressBarBar");
            this.m_ProgressBarText = this.GetStyle("ProgressBarText");
            this.m_FoldoutPreDrop = this.GetStyle("FoldoutPreDrop");
            this.m_InspectorTitlebar = this.GetStyle("IN Title");
            this.m_InspectorTitlebarText = this.GetStyle("IN TitleText");
            this.m_ToggleGroup = this.GetStyle("BoldToggle");
            this.m_Tooltip = this.GetStyle("Tooltip");
            this.m_NotificationText = this.GetStyle("NotificationText");
            this.m_NotificationBackground = this.GetStyle("NotificationBackground");
            this.m_Popup = this.m_LayerMaskField = this.GetStyle("MiniPopup");
            this.m_TextField = this.m_NumberField = this.GetStyle("textField");
            this.m_Label = this.GetStyle("ControlLabel");
            this.m_ObjectField = this.GetStyle("ObjectField");
            this.m_ObjectFieldThumb = this.GetStyle("ObjectFieldThumb");
            this.m_ObjectFieldMiniThumb = this.GetStyle("ObjectFieldMiniThumb");
            this.m_Toggle = this.GetStyle("Toggle");
            this.m_ToggleMixed = this.GetStyle("ToggleMixed");
            this.m_ColorField = this.GetStyle("ColorField");
            this.m_Foldout = this.GetStyle("Foldout");
            this.m_FoldoutSelected = GUIStyle.none;
            this.m_IconButton = this.GetStyle("IconButton");
            this.m_TextFieldDropDown = this.GetStyle("TextFieldDropDown");
            this.m_TextFieldDropDownText = this.GetStyle("TextFieldDropDownText");
            this.m_LinkLabel = new GUIStyle(this.m_Label);
            this.m_LinkLabel.normal.textColor = new Color(0.25f, 0.5f, 0.9f, 1f);
            this.m_LinkLabel.stretchWidth = false;
            this.m_TextArea = new GUIStyle(this.m_TextField);
            this.m_TextArea.wordWrap = true;
            this.m_InspectorDefaultMargins = new GUIStyle();
            this.m_InspectorDefaultMargins.padding = new RectOffset(14, 4, 0, 0);
            this.m_InspectorFullWidthMargins = new GUIStyle();
            this.m_InspectorFullWidthMargins.padding = new RectOffset(5, 4, 0, 0);
            this.m_CenteredGreyMiniLabel = new GUIStyle(this.m_MiniLabel);
            this.m_CenteredGreyMiniLabel.alignment = TextAnchor.MiddleCenter;
            this.m_CenteredGreyMiniLabel.normal.textColor = Color.grey;
        }