mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-13 13:12:42 +00:00

Per discussion on psql-www. This time, CSP compatible! Reviewed by Jonathan Katz and Magnus Hagander.
10 lines
351 B
JavaScript
10 lines
351 B
JavaScript
let theme = 'light';
|
|
if (localStorage.getItem('theme')) {
|
|
if (localStorage.getItem('theme') === 'dark') {
|
|
theme = 'dark';
|
|
document.documentElement.setAttribute('data-theme', 'dark');
|
|
}
|
|
} else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
|
theme = 'dark';
|
|
document.documentElement.setAttribute('data-theme', 'dark');
|
|
} |