In case someone else like me was searching for this, there is a thread here that talks about it some, and gives some html for it. No css was listed for it, so I did some digging. Html found in-game is slightly different than found in that thread. I'm not sure if it makes much difference, but here is what I found in-game: <rolltemplate class="sheet-rolltemplate-TestAllProps">
<table>
<caption>{{name}}</caption>
{{#allprops() }}
<tr><td>{{key}}</td><td>{{value}}</td>
{{/allprops() }}
</table>
</rolltemplate> I searched around through the console and eventually found the css as well: .sheet-rolltemplate-default table { width:100%; background-color:white; border:1px solid rgba(112,32,130,1) } .sheet-rolltemplate-default caption { background-color:rgba(112,32,130,1); color:white; font-family:"Helvetica Neue",Helvetica,sans-serif; font-weight:300; font-size:1.1em; padding:5px } .sheet-rolltemplate-default td { padding:5px; line-height:1.4em; vertical-align:top } .sheet-rolltemplate-default td:first-child { font-weight:bold; text-align:right; min-width:50px; padding-right:10px } .sheet-rolltemplate-default tr:nth-child(even) { background-color:#eee } I'm mainly posting this so that anyone like me that is totally illiterate with html or css can find this info. If you do nothing more than edit the RGBA color codes in the css and change the label from "default" to whatever name you want, you can have the basic template in various colors for use in your game by adding it onto the end of whatever character sheet you are using. Last night (well after I should have been in bed) I created several copies of this for the sheet/game I am running and have different colors for attacks, parries, damage, skills, saves, and initiative. Hopefully someone will get some use out of this instead of just me.