Using the fancy green/red colors instead of just color=red/green as it is easier on the eyes

This commit is contained in:
barelyprofessional
2024-07-26 15:44:47 +08:00
parent 831bca4445
commit cf3ed650f6
3 changed files with 30 additions and 6 deletions

View File

@@ -328,6 +328,22 @@ public static class BuiltIn
Description = "How much to divide the Howlgg bets/profit by to get the real value",
Default = "1650",
IsSecret = false
},
new BuiltInSettingsModel()
{
Key = Keys.KiwiFarmsGreenColor,
Regex = ".+",
Description = "Green color used for showing positive values in chat",
Default = "#3dd179",
IsSecret = false
},
new BuiltInSettingsModel()
{
Key = Keys.KiwiFarmsRedColor,
Regex = ".+",
Description = "Red color used for showing negative values in chat",
Default = "#f1323e",
IsSecret = false
}
];
@@ -360,5 +376,7 @@ public static class BuiltIn
public static string KiwiFarmsToken = "KiwiFarms.Token";
public static string KickEnabled = "Kick.Enabled";
public static string HowlggDivisionAmount = "Howlgg.DivisionAmount";
public static string KiwiFarmsGreenColor = "KiwiFarms.GreenColor";
public static string KiwiFarmsRedColor = "KiwiFarms.RedColor";
}
}