Zendesk: Dark Mode Text Clarifier v1.0.1
Converts dark text into a light colour. This is intended for use with dark mode.
Style Content
/* ==UserStyle==
@name Zendesk: Dark Mode Text Clarifier
@namespace https://www.timhilton.xyz/stylus-rules/
@version 1.0.1
@description Make dark text into light text. Intended for use in dark mode.
@author Tim Hilton
@homepageURL https://www.timhilton.xyz/stylus-rules/zendesk/dark-mode-text-clarifier/
@updateURL https://www.timhilton.xyz/stylus-rules/zendesk/dark-mode-text-clarifier/latest/dark-mode-text-clarifier.user.css
==/UserStyle==*/
@-moz-document regexp("https:\/\/.*\.zendesk\.com\/agent\/tickets\/.*") {
[data-test-id="omni-log-omni-to-ag-comment"] [style*="color: black"],
[style*="color:#000"],
[style*="color: #000"],
[style*="color:black"],
[style*="color: rgb(0, 0, 0)"],
[style*="color: #2B2E2F"] {
color: rgb(216, 220, 222) !important;
}
}