R for
Authoring!!

OOH Session #79…
Custom Themes

Open Office Hours
(May 27, 2025)

  • Recap session #78
  • Focal issue(s):
  • Shared problem-solving

Recap of Session
#78:

Branding!!!

color:
#  palette:
#    dark-grey: "#222222"
#    blue: "#ddeaf1"
  background: "#ddeaf1"
  foreground: "#222222"
  primary: "#9900cc"

logo: 
  medium: logo.png                           

typography:
  fonts:
    - family: Moo Lah Lah
      source: google
  base: Moo Lah Lah
  headings: Moo Lah Lah
1
…if you’d like to store color labels and later callout by name (instead of retyping hex code)
2
background color of slides, document, etc
3
“main text” will display in this color
4
accent color to be applied to hyperlinks, revealjs menu, etc
5
multiple possible spec variations – google worked fine for 1st run–through
---
title: "Untitled typst moosterpiece"
author: "nother bunch o cows"
format: typst
---

## Quarto

Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.

## Running Code

When you click the **Render** button a document will be generated that includes both content and the output of embedded code. You can embed code like this:

``{r}
1 + 1
``

You can add options to executable code like this 

``{r}
#| echo: false
2 * 2
``

The `echo: false` option disables the printing of code (only output is displayed).
---
title: "presentation"
author: "bunch o cows"
format: 
  revealjs:
    mouse-wheel: true
---

## Quarto

Quarto enables you to weave together content and executable code into a finished presentation. To learn more about Quarto presentations see <https://quarto.org/docs/presentations/>.

## Bullets

When you click the **Render** button a document will be generated that includes:

-   Content authored with markdown
-   Output from executable code

## Code

When you click the **Render** button a presentation will be generated that includes both content and the output of embedded code. You can embed code like this:

``{r}
1 + 1
``

Download PDF File

Unable to display PDF file. Download instead.

Today...

Custom Themes

Session Info (May 27, 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] digest_0.6.37     assertthat_0.2.1  lubridate_1.9.4   fastmap_1.2.0    
 [5] xfun_0.52         magrittr_2.0.3    glue_1.8.0        stringr_1.5.1    
 [9] knitr_1.50        htmltools_0.5.8.1 timechange_0.3.0  generics_0.1.3   
[13] rmarkdown_2.29    lifecycle_1.0.4   cli_3.6.5         vctrs_0.6.5      
[17] compiler_4.5.0    purrr_1.0.4       emo_0.0.0.9000    rstudioapi_0.17.1
[21] tools_4.5.0       evaluate_1.0.3    yaml_2.3.10       rlang_1.1.6      
[25] jsonlite_2.0.0    crayon_1.5.3      stringi_1.8.7