mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
8 lines
344 B
HTML
8 lines
344 B
HTML
{% load static %}
|
|
<script>
|
|
if({{ request.user.dark_theme|lower|default:'false' }} || window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
|
$('<link>').prependTo('head').attr({type : 'text/css', rel : 'stylesheet'}).attr('href', '{% static "css/dark_screen.css" %}');
|
|
document.body.setAttribute('data-theme', 'dark');
|
|
}
|
|
</script>
|