Good day, I am building a custom sheet that records body horror from accumulated use of graft/mutagens. There are thresholds over which your score becomes dangerous. My original sheet, which I'm relatively happy with uses number inputs. This is good enough, but if I wanted to add an addiction mechanic AND visually display the thresholds at which they are safe/dangerous, I was thinking of trying to implement checkboxes. My problem is formatting the checkboxes using CSS. On a side note, I also tried summing the checkmarks, but that didn't work. Right now the check marks look like this: It would be useful to be able to change the colors of the checkboxes in order to indicate safe/visible/dangerous. Is this possible? I tried the code below, using and tried to change the color of the class in CSS (.safeHorror {color:green;}) for example. < input type = "checkbox" name = "attr_horror1" value = "1" class = "safeHorror" > I'm fine with the number inputs, but thought they might look better as colored checkmarks. Normal disclosure: i have no coding training, I taught myself sheets from these forums and a few HTML/CSS tutorials, and I have never been able to get a handle on sheetworkers or Java. Thanks,