set correct defaults for body colors

This commit is contained in:
micycle 2023-05-21 01:39:14 -04:00 committed by yosh
parent 0d77198843
commit 6e956b3808
2 changed files with 10 additions and 11 deletions

View File

@ -321,7 +321,7 @@ namespace Celeste.Mod.AvaliSkin {
};
[SettingIgnore]
public ColorChoice LightBodyPreset { get; set; } = ColorChoice.Brown;
public ColorChoice LightBodyPreset { get; set; } = ColorChoice.Beige;
[SettingIgnore]
public ColorChoice DarkBodyPreset { get; set; } = ColorChoice.GreyDark;
@ -408,8 +408,7 @@ namespace Celeste.Mod.AvaliSkin {
}
public enum ColorChoice
{
public enum ColorChoice {
Beige,
Black,
BlueDark,

View File

@ -23,24 +23,24 @@ namespace Celeste.Mod.AvaliSkin {
public static class ColorUtil {
public static Color SettingToColor(CC col) {
switch (col) {
case CC.Beige: return new Color(162, 133, 92);
case CC.Beige: return new Color(162, 136, 92); // light body
case CC.Black: return new Color(0, 0, 0);
case CC.BlueDark: return new Color(22, 42, 162);
case CC.BlueLight: return new Color(50, 151, 223);
case CC.BlueDark: return new Color(22, 42, 162); // dash 3
case CC.BlueLight: return new Color(50, 151, 223); // dash 0
case CC.Brown: return new Color(98, 75, 33);
case CC.Cyan: return new Color(26, 225, 225);
case CC.GreenDark: return new Color(41, 132, 49);
case CC.GreenLight: return new Color(59, 219, 47);
case CC.GreyDark: return new Color(60, 60, 60);
case CC.GreyDark: return new Color(78, 78, 78); // dark body
case CC.GreyLight: return new Color(168, 168, 168);
case CC.Magenta: return new Color(228, 14, 155);
case CC.Orange: return new Color(237, 147, 32);
case CC.Pink: return new Color(233, 106, 252);
case CC.Pink: return new Color(233, 106, 252); // dash 2
case CC.Purple: return new Color(190, 23, 214);
case CC.Red: return new Color(238, 17, 34);
case CC.Turquoise: return new Color(26, 213, 137);
case CC.Red: return new Color(238, 17, 34); // dash 5+
case CC.Turquoise: return new Color(26, 213, 137); // dash 1
case CC.White: return new Color(255, 255, 255);
case CC.Yellow: return new Color(244, 226, 15);
case CC.Yellow: return new Color(244, 226, 15); // dash 4
default: return new Color(26, 213, 137);
}
}