body {
background-color: white;
}
@media (prefers-color-scheme: dark) {
body {
background-color: black;
}
}
:root {
/* 현재 사이트에서 라이트, 다크모드를 지원함을 알림 */
color-scale: light dark;
}
:root {
/* 라이트 모드에서는 #333, 다크 모드에서는 #ccc 값을 반환 */
--text-color: light-dark(#333, #ccc);
}
p {
/* 다크 모드로 고정 */
color-scheme: dark;
background-color: light-dark(#FFF, #000);
}
출처:
https://www.amitmerchant.com/the-new-light-dark-function-to-switch-theme-color-in-css/