ids theme: render bold text in orange Fira Sans Condensed
Bold ("highlighted") text previously only got the orange colour and
kept the serif body face. Mirror the IDS reference decks: Fira Sans
Condensed, weight 600, 90% size, so bold passages contrast against the
serif text without dominating it.
Change-Id: I82212814f9de83a6bb2ba39094726ac4ab780f90
diff --git a/inst/reveal.js-5.2.1/css/theme/source/ids.scss b/inst/reveal.js-5.2.1/css/theme/source/ids.scss
index 7144eeb..323eaf7 100644
--- a/inst/reveal.js-5.2.1/css/theme/source/ids.scss
+++ b/inst/reveal.js-5.2.1/css/theme/source/ids.scss
@@ -338,7 +338,13 @@
}
.reveal {
+ // Bold ("highlighted") text gets the orange colour AND the condensed Fira
+ // Sans face, as in the IDS reference decks -- the lighter weight and 90%
+ // size keep it from dominating the serif body text.
strong, b {
+ font-family: "Fira Sans Condensed", sans-serif;
+ font-weight: 600;
+ font-size: 90%;
color: var(--r-bold-color);
}