webmaster442.windowsterminal.fragments.terminalscheme - webmaster442/WindowsTerminal GitHub Wiki
Namespace: Webmaster442.WindowsTerminal.Fragments
Represents a color scheme for Windows Terminal
public class TerminalScheme : System.IEquatable`1[[Webmaster442.WindowsTerminal.Fragments.TerminalScheme, Webmaster442.WindowsTerminal, Version=4.0.0.0, Culture=neutral, PublicKeyToken=null]]
Inheritance Object → TerminalScheme
Implements IEquatable<TerminalScheme>
Attributes NullableContextAttribute, NullableAttribute, RequiredMemberAttribute
protected Type EqualityContract { get; }
The name of the scheme
public string Name { get; set; }
Black color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string Black { get; set; }
Red color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string Red { get; set; }
Green color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string Green { get; set; }
Yellow color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string Yellow { get; set; }
Blue color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string Blue { get; set; }
Purple color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string Purple { get; set; }
Cyan color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string Cyan { get; set; }
White color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string White { get; set; }
Bright black color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string BrightBlack { get; set; }
Bright red color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string BrightRed { get; set; }
Bright green color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string BrightGreen { get; set; }
Bright yellow color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string BrightYellow { get; set; }
Bright blue color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string BrightBlue { get; set; }
Bright purple color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string BrightPurple { get; set; }
Bright cyan color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string BrightCyan { get; set; }
Bright white color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string BrightWhite { get; set; }
Background color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string Background { get; set; }
Foreground color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string Foreground { get; set; }
Cursor color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string CursorColor { get; set; }
Selection background color. Accepts a string in hex format "#rgb" or "#rrggbb"
public string SelectionBackground { get; set; }
protected TerminalScheme(TerminalScheme original)
original
TerminalScheme
Constructors of types with required members are not supported in this version of your compiler.
public TerminalScheme()
public string ToString()
protected bool PrintMembers(StringBuilder builder)
builder
StringBuilder
public int GetHashCode()
public bool Equals(object obj)
obj
Object
public bool Equals(TerminalScheme other)
other
TerminalScheme
public TerminalScheme <Clone>$()