#nullable enable namespace Terminal.Gui; /// Event arguments for the events. public class ColorEventArgs : EventArgs { /// Initializes a new instance of /// The value that is being changed to. public ColorEventArgs (Color newColor) :base(newColor) { } }