Table text hard to see in dark mode
closed
Cally Smith
We have certain tables with different color fonts. In dark mode, these are nearly impossible to see. Is this something that Doc360 can manage in the color mapping for dark mode or something we can/need to manage via custom CSS?
Log In
Thiru
closed
Thiru
Cally Smith yes can you achieve in the Custom CSS script.
Backrgound color and text color can be modified which would work fine for your requirement.
For example, below code snippet can be leveraged.
<table style="width: 100%;">
<colgroup>
<col span="2" style="background-color: #D6EEEE">
<col span="3" style="background-color: pink">
</colgroup>
</table>