mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-20 14:57:45 +01:00
feat: add missing color overrides (#803)
This commit is contained in:
parent
dd10b4f169
commit
d676473928
3 changed files with 108 additions and 9 deletions
|
|
@ -45,12 +45,12 @@ namespace Dalamud.Interface.Colors
|
|||
/// <summary>
|
||||
/// Gets yellow used in dalamud.
|
||||
/// </summary>
|
||||
public static Vector4 DalamudYellow { get; } = new(1f, 1f, .4f, 1f);
|
||||
public static Vector4 DalamudYellow { get; internal set; } = new(1f, 1f, .4f, 1f);
|
||||
|
||||
/// <summary>
|
||||
/// Gets violet used in dalamud.
|
||||
/// </summary>
|
||||
public static Vector4 DalamudViolet { get; } = new(0.770f, 0.700f, 0.965f, 1.000f);
|
||||
public static Vector4 DalamudViolet { get; internal set; } = new(0.770f, 0.700f, 0.965f, 1.000f);
|
||||
|
||||
/// <summary>
|
||||
/// Gets tank blue (UIColor37).
|
||||
|
|
@ -70,36 +70,36 @@ namespace Dalamud.Interface.Colors
|
|||
/// <summary>
|
||||
/// Gets parsed grey.
|
||||
/// </summary>
|
||||
public static Vector4 ParsedGrey { get; } = new(0.4f, 0.4f, 0.4f, 1f);
|
||||
public static Vector4 ParsedGrey { get; internal set; } = new(0.4f, 0.4f, 0.4f, 1f);
|
||||
|
||||
/// <summary>
|
||||
/// Gets parsed green.
|
||||
/// </summary>
|
||||
public static Vector4 ParsedGreen { get; } = new(0.117f, 1f, 0f, 1f);
|
||||
public static Vector4 ParsedGreen { get; internal set; } = new(0.117f, 1f, 0f, 1f);
|
||||
|
||||
/// <summary>
|
||||
/// Gets parsed blue.
|
||||
/// </summary>
|
||||
public static Vector4 ParsedBlue { get; } = new(0f, 0.439f, 1f, 1f);
|
||||
public static Vector4 ParsedBlue { get; internal set; } = new(0f, 0.439f, 1f, 1f);
|
||||
|
||||
/// <summary>
|
||||
/// Gets parsed purple.
|
||||
/// </summary>
|
||||
public static Vector4 ParsedPurple { get; } = new(0.639f, 0.207f, 0.933f, 1f);
|
||||
public static Vector4 ParsedPurple { get; internal set; } = new(0.639f, 0.207f, 0.933f, 1f);
|
||||
|
||||
/// <summary>
|
||||
/// Gets parsed orange.
|
||||
/// </summary>
|
||||
public static Vector4 ParsedOrange { get; } = new(1f, 0.501f, 0f, 1f);
|
||||
public static Vector4 ParsedOrange { get; internal set; } = new(1f, 0.501f, 0f, 1f);
|
||||
|
||||
/// <summary>
|
||||
/// Gets parsed pink.
|
||||
/// </summary>
|
||||
public static Vector4 ParsedPink { get; } = new(0.886f, 0.407f, 0.658f, 1f);
|
||||
public static Vector4 ParsedPink { get; internal set; } = new(0.886f, 0.407f, 0.658f, 1f);
|
||||
|
||||
/// <summary>
|
||||
/// Gets parsed gold.
|
||||
/// </summary>
|
||||
public static Vector4 ParsedGold { get; } = new(0.898f, 0.8f, 0.501f, 1f);
|
||||
public static Vector4 ParsedGold { get; internal set; } = new(0.898f, 0.8f, 0.501f, 1f);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue