feat: add missing color overrides (#803)

This commit is contained in:
kalilistic 2022-04-20 03:42:10 -04:00 committed by GitHub
parent dd10b4f169
commit d676473928
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 108 additions and 9 deletions

View file

@ -126,9 +126,18 @@ namespace Dalamud.Interface.Style
DalamudWhite = new Vector4(1f, 1f, 1f, 1f),
DalamudWhite2 = new Vector4(0.878f, 0.878f, 0.878f, 1f),
DalamudOrange = new Vector4(1f, 0.709f, 0f, 1f),
DalamudYellow = new Vector4(1f, 1f, .4f, 1f),
DalamudViolet = new Vector4(0.770f, 0.700f, 0.965f, 1.000f),
TankBlue = new Vector4(0f, 0.6f, 1f, 1f),
HealerGreen = new Vector4(0f, 0.8f, 0.1333333f, 1f),
DPSRed = new Vector4(0.7058824f, 0f, 0f, 1f),
ParsedGrey = new Vector4(0.4f, 0.4f, 0.4f, 1f),
ParsedGreen = new Vector4(0.117f, 1f, 0f, 1f),
ParsedBlue = new Vector4(0f, 0.439f, 1f, 1f),
ParsedPurple = new Vector4(0.639f, 0.207f, 0.933f, 1f),
ParsedOrange = new Vector4(1f, 0.501f, 0f, 1f),
ParsedPink = new Vector4(0.886f, 0.407f, 0.658f, 1f),
ParsedGold = new Vector4(0.898f, 0.8f, 0.501f, 1f),
},
};
@ -236,9 +245,18 @@ namespace Dalamud.Interface.Style
DalamudWhite = new Vector4(1f, 1f, 1f, 1f),
DalamudWhite2 = new Vector4(0.878f, 0.878f, 0.878f, 1f),
DalamudOrange = new Vector4(1f, 0.709f, 0f, 1f),
DalamudYellow = new Vector4(1f, 1f, .4f, 1f),
DalamudViolet = new Vector4(0.770f, 0.700f, 0.965f, 1.000f),
TankBlue = new Vector4(0f, 0.6f, 1f, 1f),
HealerGreen = new Vector4(0f, 0.8f, 0.1333333f, 1f),
DPSRed = new Vector4(0.7058824f, 0f, 0f, 1f),
ParsedGrey = new Vector4(0.4f, 0.4f, 0.4f, 1f),
ParsedGreen = new Vector4(0.117f, 1f, 0f, 1f),
ParsedBlue = new Vector4(0f, 0.439f, 1f, 1f),
ParsedPurple = new Vector4(0.639f, 0.207f, 0.933f, 1f),
ParsedOrange = new Vector4(1f, 0.501f, 0f, 1f),
ParsedPink = new Vector4(0.886f, 0.407f, 0.658f, 1f),
ParsedGold = new Vector4(0.898f, 0.8f, 0.501f, 1f),
},
};
@ -400,9 +418,18 @@ namespace Dalamud.Interface.Style
DalamudWhite = ImGuiColors.DalamudWhite,
DalamudWhite2 = ImGuiColors.DalamudWhite2,
DalamudOrange = ImGuiColors.DalamudOrange,
DalamudYellow = ImGuiColors.DalamudYellow,
DalamudViolet = ImGuiColors.DalamudViolet,
TankBlue = ImGuiColors.TankBlue,
HealerGreen = ImGuiColors.HealerGreen,
DPSRed = ImGuiColors.DPSRed,
ParsedGrey = ImGuiColors.ParsedGrey,
ParsedGreen = ImGuiColors.ParsedGreen,
ParsedBlue = ImGuiColors.ParsedBlue,
ParsedPurple = ImGuiColors.ParsedPurple,
ParsedOrange = ImGuiColors.ParsedOrange,
ParsedPink = ImGuiColors.ParsedPink,
ParsedGold = ImGuiColors.ParsedGold,
};
return model;