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;
///
/// Gets the color of the border.
///
///
/// The color of the border.
///
public static ConsoleColor BorderColor { get; } = ConsoleColor.DarkGreen;
///
/// Gets or sets the user input prefix.
///
///
/// The user input prefix.
///
public static string UserInputPrefix { get; set; } = "USR";
///
/// Gets or sets the user option text.
///
///
/// The user option text.
///
public static string UserOptionText { get; set; } = " Option: ";
}
}
}