Add new colors.

This commit is contained in:
Ottermandias 2025-02-13 16:30:35 +01:00
parent 4748d1e211
commit ab2a3f5bd9

View file

@ -29,6 +29,9 @@ public enum ColorId
TriStateNeutral,
BattleNpc,
EventNpc,
ModdedItemMarker,
ContainsItemsEnabled,
ContainsItemsDisabled,
}
public static class Colors
@ -64,6 +67,9 @@ public static class Colors
ColorId.TriStateNeutral => (0xFFD0D0D0, "Dot in Tri-State Checkboxes", "The color of the dot indicating no change in tri-state checkboxes." ),
ColorId.BattleNpc => (0xFFFFFFFF, "Battle NPC in NPC Tab", "The color of the names of battle NPCs in the NPC tab that do not have a more specific color assigned." ),
ColorId.EventNpc => (0xFFFFFFFF, "Event NPC in NPC Tab", "The color of the names of event NPCs in the NPC tab that do not have a more specific color assigned." ),
ColorId.ModdedItemMarker => (0xFFFF20FF, "Modded Item Marker", "The color of dot in the unlocks overview tab signaling that the item is modded in the currently selected Penumbra collection." ),
ColorId.ContainsItemsEnabled => (0xFFA0F0A0, "Enabled Mod Contains Design Items", "The color of enabled mods in the associated mod dropdown menu when they contain items used in this design." ),
ColorId.ContainsItemsDisabled => (0x80A0F0A0, "Disabled Mod Contains Design Items", "The color of disabled mods in the associated mod dropdown menu when they contain items used in this design." ),
_ => (0x00000000, string.Empty, string.Empty ),
// @formatter:on
};