dfaust / soundkonverter

soundKonverter is in maintenance mode, PRs are welcome.
https://github.com/dfaust/soundkonverter/wiki
98 stars 26 forks source link

Dark themes make it nearly impossible to read progress during conversion #100

Open xandark opened 2 years ago

xandark commented 2 years ago

After I click Start and soundKonverter is converting audio files, with a dark theme, like Breeze Dark, I cannot see the progress for the file being processed because the highlight color appears to be hard-coded close to the color for the font.

Screenshot 2021-10-23 (22∶05∶46)

gzuaps commented 2 years ago

Look for the color in the code (255,234,234) and replace with a colour of your choice. (17,125,208) is the first I've tried and it looks good (medium blue). It should only be in the block starting if( isConverting ), but I've replaced both instances in the code. And rebuild.

xandark commented 2 years ago

But if I hard code a color in the source code, then won't it just have the same issue but with a different system color theme?

It's been awhile since I've done any programming, but would a more integrative solution be to use a system color constant that changes depending upon what the user chooses for their theme?