In dark mode this .notice area is hard to read because the text color is white and the background color is yellow.
In light mode the text color automatically is black which is a better contrast to yellow.
Code: Select all
.notice {
margin-bottom: 15px;
padding: 7px;
border: 1px solid var(--border-color-1);
background: var(--color-warning);
line-height: 18px;
font-family: Tahoma, Arial, Helvetica, sans-serif;
font-size: 12px;
}
...
.postbody {
color: var(--input-txt-color);
}