Basically the popup window use your theme’s font color. However in dark background themes in most cases the background of the popup window is remains white, which causes this issue. There are 2 ways to fix this:
Make the popup window’s background same what you have in your template, that can be achieved by inserting this to the end of your template’s css file:
#sbox-content { background-color: #000; }
Or, if you want to keep background as white, and would like to text as black:
#sbox-content { color: #000; }