diff --git a/JAVASCRIPT/1.js b/JAVASCRIPT/1.js index 1fc9acd..48e1d5e 100644 --- a/JAVASCRIPT/1.js +++ b/JAVASCRIPT/1.js @@ -1,7 +1,7 @@ function setThemeColor() { const metaThemeColor = document.querySelector('meta[name="theme-color"]'); const isDarkMode = window.matchMedia('(prefers-color-scheme: dark)').matches; - metaThemeColor.setAttribute('content', isDarkMode ? '#000000' : '#100f2c'); + metaThemeColor.setAttribute('content', isDarkMode ? '#100f2c' : '#100f2c'); } setThemeColor();