0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-13 07:10:46 -05:00
patcher/Patcher/PatchGenerator/Helpers/PatchItemDefinitions.cs

17 lines
431 B
C#

using Avalonia.Media;
using System.Collections.Generic;
namespace PatchGenerator.Helpers
{
public static class PatchItemDefinitions
{
public static Dictionary<string, IBrush> Colors = new Dictionary<string, IBrush>()
{
{"delta", Brushes.MediumPurple },
{"new", Brushes.Green },
{"del", Brushes.IndianRed },
{"exists", Brushes.DimGray }
};
}
}