1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-11-24 21:48:35 +01:00

Compare commits

..

5 commits

View file

@ -24,7 +24,7 @@ namespace MLEM.Extensions {
/// <param name="color">The color to invert</param>
/// <returns>The inverted color</returns>
public static Color Invert(this Color color) {
return new Color(Math.Abs(255 - color.R), Math.Abs(255 - color.G), Math.Abs(255 - color.B), color.A);
return new Color(255 - color.R, 255 - color.G, 255 - color.B, color.A);
}
}