Brilliant provides a lot of control over the appearance of the application, but it happens that the color hr not one of them. Thus, you will need to dig into CSS to control the appearance of the element. You can do this using includeCSS in Shiny to add a stylesheet that you can use to control the look of your application. However, the easiest way would be to simply add CSS to your hr element.
HTML('<hr style="color: purple;">')
(EDIT) Note that although this will work for most elements, hr does not respect the color property. hr behave strangely: Change the color of the hr element
Here you change the CSS color property of your hr element. See https://developer.mozilla.org/en-US/docs/Web/CSS/color
Also note that you can use hr(style="...") instead of creating raw HTML if you want. I found that building everything with bright tags makes the code easier to read in most cases, but YMMV.
source share