Fixes VChat HTML export text colours. (#7900)

* Changes the CSS so that regular 'say' and 'me' actions are directly set to black text colour.

* Changes debug info message CSS to also set to black text.

* Adds inverted colours.
This commit is contained in:
Martin Rivard
2021-02-20 02:12:13 -05:00
committed by GitHub
parent 58eee74400
commit 5d0ede0f13

View File

@@ -120,8 +120,10 @@ body.inverted {
/* Miscellaneous */
.name {font-weight: bold;}
.say {}
.emote {}
.say {color: #000000;}
.inverted .say {color: #FFFFFF;}
.emote {color: #000000;}
.inverted .emote {color: #FFFFFF;}
.alert {color: #ff0000;}
h1.alert, h2.alert {color: #000000;}
@@ -209,7 +211,8 @@ img.icon.bigicon {max-height: 32px;}
/* Debug Logs */
.debug_error {color:#FF0000; font-weight:bold}
.debug_warning {color:#FF0000;}
.debug_info {}
.debug_info {color:#000000;}
.inverted .debug_info {color: #FFFFFF;}
.debug_debug {color:#0000FF;}
.debug_trace {color:#888888;}