## 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); } ``` The fix might not apply to answers, just the question. I have not checked that yet.