I am starting and creating a gitpitch presentation and it works great. I want to create a custom color so that I can use it in the presentation but it does not work.
In the custom.css file, which I now is added correctly since other stuff in there are being displayed I add...
.myblue {
color: #65656c;
}
Then in PITCHME.md I add...
@snap[west]
Create container<br>
@color[#65656c](singularity build)<br>
@color[myblue](Install software)<br>
@snapend
in this example "singularity build" gets the right color, but "install software" does not.
Does anyone have a suggestion?