mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-31 08:03:52 +00:00
9 lines
334 B
JavaScript
9 lines
334 B
JavaScript
document.addEventListener("DOMContentLoaded", function () {
|
|
const prefersDark = window.matchMedia("(prefers-color-scheme: dark)").matches;
|
|
const htmlElement = document.documentElement;
|
|
if (prefersDark) {
|
|
htmlElement.setAttribute("data-theme", "dark");
|
|
} else {
|
|
htmlElement.setAttribute("data-theme", "light");
|
|
}
|
|
});
|