R for
Authoring!!

OOH Session #81…
…test piloting

GitHub Copilot

Open Office Hours
(June 10, 2025)

Recap of Session
#80:

Custom Themes (II)

/*-- scss:defaults --*/

@import url('https://fonts.googleapis.com/css?family=Fontdiner Swanky');

// fonts
$font-family-sans-serif: "Palatino Linotype", "Book Antiqua", Palatino,
  FreeSerif, serif !default;
$presentation-line-height: 1.3;

// colors
$body-bg: #e9cee5; 
$body-color: #a92777;
$link-color: #e17c9c;
/* $selection-bg: #26351c; */

// headings
$presentation-heading-font: "Fontdiner Swanky", "Book Antiqua", Palatino,
  FreeSerif, serif !default;
$presentation-heading-color: #a92777 !default;
$presentation-h1-text-shadow: 7px 7px #222;
$presentation-heading-text-shadow: 5px 5px #222;

// callouts

$callout-color-note: #a92777;
$callout-border-scale: -20%;

// code blocks 

/*  $code-block-bg: #241f23;
    $code-block-border-color: #a92777;  */

/*-- scss:mixins --*/

// Background generator
@mixin bodyBackground() {
  @include radial-gradient(#f2bbea, #faf5f9);
}

/*-- scss:rules --*/
1
grabbing from GoogleFonts preferred to loading locally
2
prioritized fonts aka font stack – 1st named ("Fontdiner Swanky") is first priority, if that is unavailable, the next will be used. Double quotes are used if the font name contains special characters (for example, a space character)
3
added between Session #80 and current – stolen from existing themes

Today…

GitHub
Copilot !!

Session Info (June 10, 2025) Rendering:

R version 4.5.0 (2025-04-11 ucrt)
Platform: x86_64-w64-mingw32/x64
Running under: Windows 10 x64 (build 19045)

Matrix products: default
  LAPACK version 3.12.1

locale:
[1] LC_COLLATE=English_United States.utf8 
[2] LC_CTYPE=English_United States.utf8   
[3] LC_MONETARY=English_United States.utf8
[4] LC_NUMERIC=C                          
[5] LC_TIME=English_United States.utf8    

time zone: America/Chicago
tzcode source: internal

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[1] fontawesome_0.5.3

loaded via a namespace (and not attached):
 [1] compiler_4.5.0    fastmap_1.2.0     cli_3.6.5         tools_4.5.0      
 [5] htmltools_0.5.8.1 rstudioapi_0.17.1 yaml_2.3.10       rmarkdown_2.29   
 [9] knitr_1.50        jsonlite_2.0.0    xfun_0.52         digest_0.6.37    
[13] rlang_1.1.6       evaluate_1.0.3