CSS 변수와 다크 모드 테마
CSS 변수 정의
공통 스타일에서 색상, 글자 크기 등을 변수로 관리
:root {
--bg-color: #ffffff;
--text-color: #000000;
--primary-color: #1e90ff;
}
body {
background: var(--bg-color);
color: var(--text-color);
}
다크 모드 지원
시스템 설정을 감지해 다크 모드 적용
@media (prefers-color-scheme: dark) {
:root {
--bg-color: #121212;
--text-color: #f0f0f0;
--primary-color: #90caf9;
}
}
토글 버튼으로 테마 변경
사용자가 직접 테마 선택 가능
<button id="theme-toggle">다크 모드</button>
<script>
document.getElementById('theme-toggle').addEventListener('click', () => {
document.documentElement.classList.toggle('dark');
});
</script>
.dark {
--bg-color: #121212;
--text-color: #f0f0f0;
--primary-color: #90caf9;
}
공통 스타일에서 색상, 글자 크기 등을 변수로 관리
:root {
--bg-color: #ffffff;
--text-color: #000000;
--primary-color: #1e90ff;
}
body {
background: var(--bg-color);
color: var(--text-color);
}
다크 모드 지원
시스템 설정을 감지해 다크 모드 적용
@media (prefers-color-scheme: dark) {
:root {
--bg-color: #121212;
--text-color: #f0f0f0;
--primary-color: #90caf9;
}
}
토글 버튼으로 테마 변경
사용자가 직접 테마 선택 가능
<button id="theme-toggle">다크 모드</button>
<script>
document.getElementById('theme-toggle').addEventListener('click', () => {
document.documentElement.classList.toggle('dark');
});
</script>
.dark {
--bg-color: #121212;
--text-color: #f0f0f0;
--primary-color: #90caf9;
}
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 148 | AngularJS | 8년 전 | 1666 | ||
| 147 | AngularJS | 8년 전 | 1083 | ||
| 146 | AngularJS | 8년 전 | 1268 | ||
| 145 | AngularJS | 8년 전 | 1374 | ||
| 144 | AngularJS | 8년 전 | 1164 | ||
| 143 | AngularJS | 8년 전 | 1208 | ||
| 142 | AngularJS | 8년 전 | 1180 | ||
| 141 | AngularJS | 8년 전 | 1339 | ||
| 140 | AngularJS | 8년 전 | 1205 | ||
| 139 | AngularJS | 8년 전 | 1452 | ||
| 138 | AngularJS | 8년 전 | 1157 | ||
| 137 | AngularJS | 8년 전 | 1068 | ||
| 136 | AngularJS | 8년 전 | 1173 | ||
| 135 | AngularJS | 8년 전 | 1686 | ||
| 134 | AngularJS | 8년 전 | 1394 | ||
| 133 | AngularJS | 8년 전 | 1486 | ||
| 132 | AngularJS | 8년 전 | 1105 | ||
| 131 | AngularJS | 8년 전 | 1379 | ||
| 130 | AngularJS | 8년 전 | 1468 | ||
| 129 | AngularJS | 8년 전 | 1453 | ||
| 128 | AngularJS | 8년 전 | 2079 | ||
| 127 | AngularJS | 8년 전 | 1505 | ||
| 126 | jQuery Mobile | 8년 전 | 2271 | ||
| 125 | jQuery Mobile | 8년 전 | 2029 | ||
| 124 | jQuery Mobile | 8년 전 | 1892 | ||
| 123 | jQuery Mobile | 8년 전 | 1825 | ||
| 122 | jQuery Mobile | 8년 전 | 1864 | ||
| 121 | jQuery Mobile | 8년 전 | 2068 | ||
| 120 | jQuery Mobile | 8년 전 | 1604 | ||
| 119 | jQuery Mobile | 8년 전 | 1683 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기