I want to provide players the option to change the colour of the buttons on the character sheet. I've got it set up within a faux-settings section, but I'm not sure how to continue. Normally, I'd put in the CSS: .charsheet button[value=0].sheet-blank-button:active {background: #00ff00;}
.charsheet button[value=1].sheet-blank-button:active {background: #00ff00;}
.charsheet button[value=2].sheet-blank-button:active {background: #00ff00;}
... But because these buttons are used to roll things in the chat, their value is not going to be compatible wit ha simple sheetworker that changes the value. Is it as simple as nesting the <button>...</button> sections in another set of divs and setting the value there, or is there something else I can target in the CSS? I'm aware that you can apply a style within the HTML section, i.e: style="background:#00b300;" Is the simplest way to get past this just using a basic sheetworker to change the style tag in the HTML, essentially supplementing the CSS?