for the R code below, I am trying to add an !important tag after the background color, which comes from a variable, but it is not working:
``htmltools::div(
class = "bar",
style = list(
width = paste0(percentage_b * 100, "%")
),
htmltools::css(
"background-color!" = bar_color
)
)``