Using kable () to render a simple table gives what appears to be the default color font for the table header in the resulting html file. Is there any way to control font color, size, etc. Tables (or picture)?
--- title: "test" output: html_document: theme: cosmo --- ```{r} library(knitr) tab.1 = table(mtcars$cyl, mtcars$vs) kable(tab.1, caption="Table 1: Caption Font Color") ```
source share