Add Color options

This commit is contained in:
Zeffuro
2025-12-23 07:40:53 +01:00
parent 5381c1f794
commit aedcc7953c
15 changed files with 404 additions and 18 deletions
@@ -1,10 +1,14 @@
using System.Numerics;
using KamiToolKit.Classes;
using SixLabors.ImageSharp.PixelFormats;
namespace AetherBags.Configuration;
public class CurrencySettings
{
public bool Enabled { get; set; } = true;
public bool ColorWhenCapped { get; set; } = true;
public bool ColorWhenLimited { get; set; } = true;
public Vector4 DefaultColor { get; set; } = ColorHelper.GetColor(8);
public Vector4 CappedColor { get; set; } = ColorHelper.GetColor(43);
public Vector4 LimitColor { get; set; } = ColorHelper.GetColor(17);