I'm colourblind and have a really hard time reading the colour of stash contents etc.
If I edit the code and change every instance of "magenta" and/or #FF00FF to something a bit more readable (for me) I assume that's not going to make anything explode?
Changing the text colour of container items (mostly stashes)
Ok, turns out that the Stash color option in the config doesn't actually change the stash colour, you need to use the Box option
hi yes this is a bug thank you. open the .cs for stashes, and change:string colorHex = container is LockedByEntCrate || container is VendingMachine ? heliCC : isBox ? boxCC : isLoot ? lootCC : stashCC;
tostring colorHex = container is LockedByEntCrate || container is VendingMachine ? heliCC : container is StashContainer ? stashCC : isLoot ? lootCC : boxCC;
the rest should work as expected