Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1340,32 +1340,26 @@ public override void WriteErrorLine(string value)
}
}

// Format colors
public ConsoleColor FormatAccentColor { get; set; } = ConsoleColor.Green;

// Error colors
public ConsoleColor ErrorAccentColor { get; set; } = ConsoleColor.Cyan;

public ConsoleColor ErrorForegroundColor { get; set; } = ConsoleColor.Red;

public ConsoleColor ErrorBackgroundColor { get; set; } = Console.BackgroundColor;

// Warning colors
public ConsoleColor WarningForegroundColor { get; set; } = ConsoleColor.Yellow;

public ConsoleColor WarningBackgroundColor { get; set; } = Console.BackgroundColor;

// Debug colors
public ConsoleColor DebugForegroundColor { get; set; } = ConsoleColor.Yellow;

public ConsoleColor DebugBackgroundColor { get; set; } = Console.BackgroundColor;

// Verbose colors
public ConsoleColor VerboseForegroundColor { get; set; } = ConsoleColor.Yellow;

public ConsoleColor VerboseBackgroundColor { get; set; } = Console.BackgroundColor;

// Progress colors
public ConsoleColor ProgressForegroundColor { get; set; } = ConsoleColor.Black;

public ConsoleColor ProgressBackgroundColor { get; set; } = ConsoleColor.Yellow;
Expand Down