Spaces:
Runtime error
Runtime error
File size: 291 Bytes
81afbdf | 1 2 3 4 5 6 7 8 9 10 11 12 | """CSS and JavaScript for the backend UI."""
dark_mode_gradio_js = """
function refresh() {
const url = new URL(window.location);
if (url.searchParams.get('__theme') !== 'dark') {
url.searchParams.set('__theme', 'dark');
window.location.href = url.href;
}
}
"""
|