Turns out the culprit was the fact that I had:
Qt Code:
  1. setStyleSheet("background-color: rgb(240,240, 240)");
To copy to clipboard, switch view to plain text mode 

in the mainDialog.cpp

This propagated to widgets that cannot be styled this way. In order to style the scrollbar, it looks like I am going to have to style each part of the scrollbar.
stylesheet description for scrollbar

I was hoping that I could set the color of my entire application in one call but it looks like I am going to have to be a little more detailed than that.