Run calibre from source and change the colors to whatever you like, its fairly trivial to do -- couple of lines of code. At the end of the __init__ method of the Application class in gui2/__init__.py put in lines like this
p = self.palette()
p.setColor(p.AlternateBase, QColor('whatever color you like'))
Instructions for running calibre from source ar in the user manual.
|