public TerminalColors(TerminalColors other)
        {
            Foreground   = other.Foreground;
            Background   = other.Background;
            Cursor       = other.Cursor;
            CursorAccent = other.CursorAccent;
            Selection    = other.Selection;

            Black   = other.Black;
            Red     = other.Red;
            Green   = other.Green;
            Yellow  = other.Yellow;
            Blue    = other.Blue;
            Magenta = other.Magenta;
            Cyan    = other.Cyan;
            White   = other.White;

            BrightBlack   = other.BrightBlack;
            BrightRed     = other.BrightRed;
            BrightGreen   = other.BrightGreen;
            BrightYellow  = other.BrightYellow;
            BrightBlue    = other.BrightBlue;
            BrightMagenta = other.BrightMagenta;
            BrightCyan    = other.BrightCyan;
            BrightWhite   = other.BrightWhite;
        }
Esempio n. 2
0
 public TerminalTheme(TerminalTheme other)
 {
     Id           = other.Id;
     Name         = other.Name;
     Author       = other.Author;
     PreInstalled = other.PreInstalled;
     Colors       = new TerminalColors(other.Colors);
 }