How to change code block background color

By making a right click on the area, finding to class of the code area and changing that class to your preferred background color.

It might be:

.highlight pre {
background-color: green !important;
}

It might not work, because the theme has it’s styles included in the theme files instead of the stylesheet. The !important might help here.

1 Like