using System;
namespace Swan {
  /// 
  /// A console terminal helper to create nicer output and receive input from the user
  /// This class is thread-safe :).
  /// 
  public static partial class Terminal {
    /// 
    /// Terminal global settings.
    /// 
    public static class Settings {
      /// 
      /// Gets or sets the default output color.
      /// 
      /// 
      /// The default color.
      /// 
      public static ConsoleColor DefaultColor { get; set; } = Console.ForegroundColor;
    }
  }
}