mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-03-17 00:50:03 +01:00
13 lines
321 B
JavaScript
13 lines
321 B
JavaScript
/**
|
|
* Theme setting
|
|
*/
|
|
|
|
function setThemeCookie() {
|
|
if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
|
document.cookie = `theme=dark; path=/; max-age=788923800; samesite=lax`;
|
|
} else {
|
|
document.cookie = `theme=light; path=/; max-age=788923800; samesite=lax`;
|
|
}
|
|
}
|
|
|
|
export { setThemeCookie };
|