Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/tests/docs/playwright/html/unified-brand/dark-light-brand.qmd
3563 views
---
format: html
title: light and dark brands inline
brand:
  dark:
    color:
      foreground: '#eee'
      background: '#222'
    typography:
      monospace:
        background-color: '#321'
      link:
        background-color: '#421'
        color: '#c3a'
  light:
    color:
      foreground: '#222'
      background: '#eee'
    typography:
      link:
        background-color: '#efe'
---

```{r}
#| lst-label: lst-fibonacci
#| lst-cap: A naive algorithm for computing Fibonacci numbers.
fib <- function(x) {
  if (x < 2) 1 else fib(x - 1) + fib(x - 2)
}
```

Here is [a link](https://example.com).

{{< lipsum 2 >}}