newhinton opened a new issue, #1368: URL: https://github.com/apache/answer/issues/1368
## Describe the bug Code block uses wrong background color <img width="1107" height="115" alt="Image" src="https://github.com/user-attachments/assets/a16b2eaa-fac3-4115-9e9e-2854426287c6" /> ### To Reproduce Add code block to question while in dark mode ### Expected behavior Proper Contrast ### Fix: I used the following custom css to use a better color. In the default, it used a hardcoded light-grey. ``` .fmt pre { background-color: var(--bs-secondary-bg); } ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
