The problem: Say you have a sentence, "I love R". How would you change the color of just the word "love" to red?
Prior knowledge: I'm aware of the use of Sass in Quarto, but these seem to change whole chunks of text.
/*-- scss:defaults --*/
$presentation-heading-color: green;
/*-- scss:rules --*/
Using CSS to be more specific:
/*-- scss:defaults --*/
$custom-col: green;
/*-- scss:rules --*/
.reveal section h2 {
color: $custom-col;
}