I just need to change the background color of the whole table to white. A reproducible example
kable(head(iris)) %>%
kable_styling("striped", full_width = FALSE, htmltable_class = 'lightable-classic-2') %>%
add_header_above(c("Measurements" = 4L, " " = 1L)) %>%
kable_paper() %>%
save_kable(file = 'tableX.png')
What've found/tried:
add_header_above()has a background argument but that only affects the header.save_kable()has thebs_themeargument but I can't find what the options are.- some functions have the
extra_cssargument but can't find a function that affects the whole table.

