编织到 html 时如何保持默认的 R markdown 颜色?

How to keep default R markdown colors when knitting to html?

在 R markdown 或 R studio 中,对于像这样的一行

library('tidyverse')

library 为蓝色,tidyverse 为绿色。当我编织到html时,它们分别出现了深红色和红色。如何编织我的 html 以保持整个文档的原始颜色?在 R Markdown Cookbook, it says that I can use a span tag and set the color, but that seems to work for a specific code chunk. I found this post for the background color, not the text. Or 中,但再次针对单个代码块。我相信这是因为颜色在 R 和 HTML 中有不同的名称?有没有办法在 YAML header 正下方的 <style type="text/css"> 部分中指定它?我用 R 编写代码,但我对 CSS 或 HTML.

完全陌生

在 YAML header 中使用 highlight: textmate

例如,

---
title: "Test"
output: 
  html_document:
    highlight: textmate
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

## Test

```{r}
library("tidyverse")
```

编织到

进一步阅读

R Markdown: The Definitive Guide