it’s coming from bbpress stylesheet.
there may be a quicker way to remove this, but one that should work is as follows.
I don’t think you have a childtheme, and now may be the time to consider having one, see https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum-part-2/ for more details
once done you need to navigate to
wp-content/plugins/bbpress/templates/default/css/bbpress.css
copy this file into a folder called css within your theme, so you end up with
wp-content/themes/mychildtheme/css/bbpress.css
where mychildtheme is the name of your childtheme
Then edit every line that has
background-color : xxxxxxx
change to
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
NOTE it goes from background-color to background
and it is only the background color that you’ll be changing, not lines which just have color: as that’ll be text!
eg
#bbpress-forums div.bbp-forum-header,
#bbpress-forums div.bbp-topic-header,
#bbpress-forums div.bbp-reply-header {
background-color: #f4f4f4;
}
becomes
#bbpress-forums div.bbp-forum-header,
#bbpress-forums div.bbp-topic-header,
#bbpress-forums div.bbp-reply-header {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
}
This will make the background transparent, but with a darker tint shading that you have in your sidebar (the amount of difference is on the 0.4 bit, 0.1 is the lightest, 1.0 the darkest).
Come back if that doesn’t fix it, or for further help