Hey folks! I'm working on a basic character sheet for Hostile, a Cepheus-based RPG. I've worked out most of my issues on my own, but this one is stumping me. I have buttons for skills and weapon damage, which I've assigned a text and background color to in the CSS sheet. Background of the buttons is black and the text is a shade of green. When I preview it in the Character Sheet Editor, everything looks correct. The buttons are black with green text. But, in the actual game, the buttons are white with green text. Here is the CSS code: button { background-color: black; color: #06B600; } Why would it show up normally in the preview, but not in the actual game? I did find that I had to check "Legacy Sanitization" or the green text wasn't green either. After checking it, the text color is correct in both places, but not the button background color. Any help is greatly appreciated! Edit: I should also note I've tried the background color with rgb and hex designations as well, with the same result. "black" is just my last attempt to make it work, but no dice (no pun intended).