diff --git a/Dalamud/Interface/Colors/ImGuiColors.cs b/Dalamud/Interface/Colors/ImGuiColors.cs index 3613e8e49..b540c288a 100644 --- a/Dalamud/Interface/Colors/ImGuiColors.cs +++ b/Dalamud/Interface/Colors/ImGuiColors.cs @@ -7,11 +7,6 @@ namespace Dalamud.Interface.Colors /// public static class ImGuiColors { - /// - /// Gets white color. - /// - public static Vector4 White { get; } = new Vector4(255, 255, 255, 1); - /// /// Gets red used in dalamud. /// diff --git a/Dalamud/Interface/Internal/Windows/ColorDemoWindow.cs b/Dalamud/Interface/Internal/Windows/ColorDemoWindow.cs index a1c1c1866..e340172d8 100644 --- a/Dalamud/Interface/Internal/Windows/ColorDemoWindow.cs +++ b/Dalamud/Interface/Internal/Windows/ColorDemoWindow.cs @@ -26,7 +26,6 @@ namespace Dalamud.Interface.Internal.Windows this.colors = new List<(string Name, Vector4 Color)>() { - ("White", ImGuiColors.White), ("DalamudRed", ImGuiColors.DalamudRed), ("DalamudGrey", ImGuiColors.DalamudGrey), ("DalamudGrey2", ImGuiColors.DalamudGrey2),