LinearGauge change text color

Hi,

I am using the LinearGauge indicator in one of my panel apps. Unfortunately, when switching to a dark theme, the text of this inidicator isn´t readable anymore. Is it possible to adjust the text color of somehow?

import panel as pn
pn.extension()

lg = pn.indicators.LinearGauge(name='Failure Rate', value=30, bounds=(0, 100))

pn.template.FastListTemplate(main=lg).servable()

Thanks