I would like change the background color in a kable_style or the stripe.I use this :
kable(tabEvol,"latex",booktabs=TRUE)%>%
kable_styling(latex_options=c("striped","hold_positions"),stripe_color="green")
or
kable(tabEvol,"latex",booktabs=TRUE)%>%
kable_styling(latex_options=c("striped","hold_positions"))%>%
row_spec(2,background="red")
It works no problem, but if i change from the classical color, i put for example, "lightblue1", or a color from LaTeX "SkyBlue", it doesn't work anymore, i get the error message to check the xcolor package which indicate me the colors like "SkyBlue" or even RGB...
How can i do that ? put the rgb code or change the color with the name ?