#region Imports using System.Drawing; using System.Windows.Forms; #endregion namespace DPumpHydr.WinFrmUI.RLT.Controls { #region SkyLabel public class SkyLabel : Label { public SkyLabel() : base() { Font = new("Verdana", 6.75f, FontStyle.Bold); ForeColor = Color.FromArgb(27, 94, 137); } } #endregion }