Thanks for the input Velkor; black is a pretty safe color to use for people with color blindness. Another great color to use would be blue--it should be relatively distinguishable from red-green colorblindness and there are no yellows for people with yellow-blue colorblindness. You can change it by using the same procedure as described by Velkor, but with the bookmarklet changed to:
Code:
javascript:(function(){var styleElement = document.createElement("style");styleElement.type = "text/css";if (styleElement.styleSheet) {styleElement.styleSheet.cssText = ".enemy {color:blue !important;}";} else {styleElement.appendChild(document.createTextNode(".enemy {color:blue !important;}")); } document.getElementsByTagName("head")[0].appendChild(styleElement);})();
However, by the off chance that some non-color blind users see the chat log where the enemy's name is not red, it might be a bug and can be fixed using a similar procedure using this:
Code:
javascript:(function(){var styleElement = document.createElement("style");styleElement.type = "text/css";if (styleElement.styleSheet) {styleElement.styleSheet.cssText = ".enemy {color:red !important;}";} else {styleElement.appendChild(document.createTextNode(".enemy {color:red !important;}")); } document.getElementsByTagName("head")[0].appendChild(styleElement);})();
For Google Chrome, you can set the bookmarklet, open your Bookmarks Tab and then drag/drop into your Tribunal page.
Again, thanks a lot. It's community members like you that makes being part of this entire thing that much more incredible.