Files
Sharp7.Monitor/Sharp7.Monitor/CustomStyles.cs
2024-04-28 20:59:34 +02:00

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);
}