From 401e6e2868a2e35e27ab6a4b64873e7abe46ea23 Mon Sep 17 00:00:00 2001
From: kalilistic <35899782+kalilistic@users.noreply.github.com>
Date: Sun, 15 Aug 2021 08:59:56 -0400
Subject: [PATCH] fix: remove bad/dupe white
---
Dalamud/Interface/Colors/ImGuiColors.cs | 5 -----
Dalamud/Interface/Internal/Windows/ColorDemoWindow.cs | 1 -
2 files changed, 6 deletions(-)
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),