10 lines
313 B
C#
10 lines
313 B
C#
using Spectre.Console;
|
|
|
|
namespace Sharp7.Monitor;
|
|
|
|
public static class CustomStyles
|
|
{
|
|
public static Style Error { get; } = new Style(foreground: Color.Red);
|
|
public static Style Note { get; } = new(foreground: Color.DarkSlateGray1);
|
|
public static Style? Hex { get; } = new(foreground: Color.Blue);
|
|
} |