Creating and editing new stylesheets
I've finally packaged up my stylesheet editing code so that it's easy to use. You can find it here.
You can load it like:
Get["https://raw.githubusercontent.com/b3m2a1/mathematica-tools/master/StylesheetEdit.wl"
And then it provides you with functions for finding style cells:
StyleSheetCells["MyCell"]
Making new style cells:
StyleSheetNew["MyCell"]
And editing cells:
StyleSheetNew["MyCell",
{
FontColor->Pink,
FontFamily->"CMU Serif"
}
]
Hopefully this makes working with stylesheets less painful
Instead of going to Evaluation > Quit Kernel > local, you simply type Quit and the kernel stops, then run the commands again in the new session. That's it!