I have certain words in my flextable footer lines that I would like to be a different color. Here is an example using the example iris data.
ft_1 <- flextable(head(iris))
ft_1 <- add_footer_lines(ft_1,
values = c("This is red", "This is yellow")
)
I would like just the word “red” and “yellow” to be their respective colors. I’m not sure how to accomplish this within this package.
Thank you! 🙂