Files
PyRIGS/templates/partials/dark_theme.html
2022-01-20 10:50:41 +00:00

8 lines
346 B
HTML

{% load static %}
<script>
if({{ request.user.dark_theme|lower|default:'false' }} || window.matchMedia('(prefers-color-scheme: dark)').matches) {
document.querySelector('head').innerHTML += '<link rel="stylesheet" href="{% static "css/dark_screen.css" %}" type="text/css"/>';
document.body.setAttribute('data-theme', 'dark');
}
</script>