更改 Rstudio 中 kable 表的默认文本颜色

Change default text color for kable tables inside Rstudio

我在 RStudio 中使用 R Markdown,并且更喜欢使用黑色背景编写代码。我的表格在输出 html 文档中使用 kable 进行了很好的格式化。但是,我注意到我无法读取 kable 的输出,因为文本颜色为黑色:

但是如果我使用 pander,它知道使用白色文本...

但是我的报告中的丑陋天啊:

我怎样才能让 kable 在 RStudio 中使用白色文本,或者让 pander 在我的报告中生成更漂亮的表格?

你可以使用

kable(head(iris), format = "html", table.attr = "style = \"color: white;\"")

为了让笔记本预览使用白色字体颜色。如果您希望最终输出以另一种方式格式化,只需在 Rmarkdown 的开头使用一些 CSS:

<style>
table {
  background-color: white !important;
  color: black !important;
}
</style>

!important 规则覆盖任何其他样式。