pygmalion-web-frontend/index.html

24 lines
803 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pygmalion Web Frontend</title>
</head>
<body>
<script>
function useColor(light="white", dark="#1A202C"){
// Fixes the light theme flashing issue when loading a page. Assumes that the theme starts in dark mode.
const colorMode = window.localStorage.getItem("chakra-ui-color-mode");
if(colorMode === null){
return dark;
}
return colorMode === "dark" ? dark : light;
}
document.body.style.background = useColor();
</script>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>