Autocomplete text in Dark Theme

Has anyone else noticed that you can’t see autocomplete drop downs when using a Dark theme? Is there a(n easy) work around for this?

import panel as pn
pn.extension()

autocomplete = pn.widgets.AutocompleteInput(
    options=['Aardvark','Antelope','Autocomplete','Antimatter','Ants','Anteater', 'Antithesis'])
testrow = pn.Row(autocomplete, height=500)
templ = pn.template.BootstrapTemplate(title='Bootstrap Template')
templ.main.append(testrow)
templ.show()

image