3
I would like to change the header color of the "Material" theme of the "rmdformats" package to an html output of rmarkdown.
I want to change from green to blue just the header, keeping all other structures and colors
I’m having trouble finding the solution
---
title: "Sample document"
output:
rmdformats::material:
highlight: kate
self_contained: false
thumbnails: true
gallery: true
fig_width: 11
fig_height: 6
df_print: kable
runtime: shiny
---
```{r, echo=FALSE}
library(DT)
datatable(
iris, extensions = 'Buttons', options = list(
dom = 'Bfrtip',
buttons = c('copy', 'csv', 'excel', 'pdf', 'print','colvis')
)
)
```
thank you so much for your help
– Henrique Faria de Oliveira