How to configure a theme to have a separate colors for: message, warning, error

I have been researching a bit about custom themes in RStudio.

I can inspect an element, but I am not seeing a distinction in the class structure between an error and a message and a warning...

> print("hello");
[1] "hello"
> warning("hello");
Warning message:
hello 
> stop("hello");
Error: hello

MSG:

<span class="GHF-EWBBF0B">[1] "hello"
</span>

WARNING: (two spans)

<span class="GHF-EWBBP-B  ace_constant ace_language">Warning message:
</span>

<span class="GHF-EWBBP-B  ace_constant ace_language">hello 
</span>

ERROR: (only one span)

<span class="GHF-EWBBP-B  ace_constant ace_language">Error: hello
</span>

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.