mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
8 lines
346 B
HTML
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>
|