A custom color fo your text

argonTextColor(tag, color)

Arguments

tag

Any tag containing text.

color

Text color. See https://demos.creative-tim.com/argon-design-system/docs/foundation/colors.html.

Author

David Granjon, dgranjon@ymail.com

Examples

if (interactive()) {
 library(argonR)
 library(htmltools)
 argonTextColor(
  tag = h1("test"),
  color = "success"
 )
}