mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-03-17 09:00:05 +01:00
14 lines
321 B
JavaScript
14 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 };
|