diff --git a/Dalamud/Interface/Colors/ImGuiColors.cs b/Dalamud/Interface/Colors/ImGuiColors.cs index b540c288a..0e6ac69f5 100644 --- a/Dalamud/Interface/Colors/ImGuiColors.cs +++ b/Dalamud/Interface/Colors/ImGuiColors.cs @@ -15,17 +15,17 @@ namespace Dalamud.Interface.Colors /// /// Gets grey used in dalamud. /// - public static Vector4 DalamudGrey { get; } = new Vector4(0.70f, 0.70f, 0.70f, 1.00f); + public static Vector4 DalamudGrey { get; } = new Vector4(0.7f, 0.7f, 0.7f, 1f); /// /// Gets grey used in dalamud. /// - public static Vector4 DalamudGrey2 { get; } = new Vector4(0.7f, 0.7f, 0.7f, 1.0f); + public static Vector4 DalamudGrey2 { get; } = new Vector4(0.7f, 0.7f, 0.7f, 1f); /// /// Gets grey used in dalamud. /// - public static Vector4 DalamudGrey3 { get; } = new Vector4(0.5f, 0.5f, 0.5f, 1.0f); + public static Vector4 DalamudGrey3 { get; } = new Vector4(0.5f, 0.5f, 0.5f, 1f); /// /// Gets white used in dalamud. @@ -45,16 +45,16 @@ namespace Dalamud.Interface.Colors /// /// Gets tank blue (UIColor37). /// - public static Vector4 TankBlue { get; } = new Vector4(0, 0.6f, 1, 1); + public static Vector4 TankBlue { get; } = new Vector4(0f, 0.6f, 1f, 1f); /// /// Gets healer green (UIColor504). /// - public static Vector4 HealerGreen { get; } = new Vector4(0, 0.8f, 0.1333333f, 1); + public static Vector4 HealerGreen { get; } = new Vector4(0f, 0.8f, 0.1333333f, 1f); /// /// Gets dps red (UIColor545). /// - public static Vector4 DPSRed { get; } = new Vector4(0.7058824f, 0, 0, 1); + public static Vector4 DPSRed { get; } = new Vector4(0.7058824f, 0f, 0f, 1f); } }