在 R shiny 中更改通知的颜色

Change color of notification in R shiny

我正在尝试使用 "showNotification" 功能来显示绿色弹出窗口。
官方文档说,可以使用参数'type'来改变颜色。

type    A string which controls the color of the notification. One of "default" (gray), "message" (blue), "warning" (yellow), or "error" (red).

有人试过这个吗?
有什么方法可以使用 HTML/HEX 代码吗?

更新
我最终像这样重新着色了单一类型的 showNotifications:

 tags$head(tags$style(HTML('
                                                 .shiny-notification-error {
                                                  background-color:#FF5757;
                                                  color:#000000;
                                                 }
                                                  .shiny-notification-message {
                                                  background-color:#B5E26F;
                                                  color:#000000;
                                                 }
                                                 '))),

您可以自己添加一些样式:

library(shiny)
shinyApp(
  ui = fluidPage(
    tags$head(
      tags$style(
        HTML(".shiny-notification {background-color:#112446;}")
      )
    ),
    actionButton("show", "Show")
  ),
  server = function(input, output) {
    observeEvent(input$show, {
      showNotification("Message text",action = a(href = "javascript:location.reload();", "Reload page"),type = "warning"
      )
    })
  }
)