다크모드가 대응이 안되있는 상태에서 브라우저 마음대로 색상을 반전시켜서 곤란해질때가 있다. 이럴때는 다크모드를 막아버려야하는데, 다음과 같이 막을 수 있다.
<head>
<meta name="color-scheme" content="light only"/>
<meta name="supported-color-schemes" content="light"/>
</head>
:root {
color-scheme: light only;
}
'프로그래밍 > General' 카테고리의 다른 글
[Windows] Git Bash에 tmux 설치해서 사용하기 (0) | 2022.08.29 |
---|---|
애플 실리콘 칩(M1, M2) Python 환경설정 한번에 끝내기 (0) | 2022.08.14 |
vim 한글 깨짐현상 해결방법 (0) | 2022.08.10 |
Git Release 명령어 인터페이스 (Command Line Interface)에서 처리 (0) | 2022.08.04 |
Windows 패키지 매니저 Chocolatey (choco) 설치하기 (0) | 2022.08.04 |