Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .Jules/palette.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@
## 2024-06-25 - Improve Color Contrast
**Learning:** Found that using `--gold` for text on white or light backgrounds (like `--paper`) fails WCAG AA contrast standards, making the text difficult to read for some users.
**Action:** Avoid using `--gold` on light backgrounds. Instead, use alternatives with better contrast like `--teal`. Retain `--gold` for dark backgrounds (like `--ink`) where it provides excellent contrast.

## 2026-07-08 - [μ ‘κ·Όμ„±] prefers-reduced-motion μ„€μ • 지원
**Learning:** μ‹œμŠ€ν…œμ—μ„œ μ• λ‹ˆλ©”μ΄μ…˜ μΆ•μ†Œ μ˜΅μ…˜μ„ μΌ  μ‚¬μš©μžμ—κ²Œλ„ 슀무슀 슀크둀링과 νŽ˜μ΄λ“œ μ „ν™˜ νš¨κ³Όκ°€ λΆˆμΎŒκ°μ„ 쀄 수 μžˆμŒμ„ ν™•μΈν–ˆμŠ΅λ‹ˆλ‹€.
**Action:** μ‚¬μš©μž μ‹œμŠ€ν…œ 섀정에 맞좰 CSS의 `scroll-behavior`와 `transition-duration`을 λΉ„ν™œμ„±ν™”ν•˜λŠ” `@media (prefers-reduced-motion: reduce)` 쿼리λ₯Ό μ „μ—­μœΌλ‘œ μΆ”κ°€ν•˜λ„λ‘ κ°œμ„ ν•΄μ•Ό ν•©λ‹ˆλ‹€.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# CHANGELOG

## [Unreleased]
- μ‹œμŠ€ν…œ μ ‘κ·Όμ„± μ„€μ •(`prefers-reduced-motion`)에 λ”°λ₯Έ μ• λ‹ˆλ©”μ΄μ…˜ κ°μ†Œ κΈ°λŠ₯ μΆ”κ°€
- **μ„±λŠ₯ κ°œμ„ **: `i18n.js`μ—μ„œ 초기 λ‘œλ“œ μ‹œ κΈ°λ³Έ μ–Έμ–΄κ°€ ν•œκ΅­μ–΄(ko)인 경우 λΆˆν•„μš”ν•œ DOM 순회 및 ν…μŠ€νŠΈ μ—…λ°μ΄νŠΈλ₯Ό μƒλž΅ν•˜λ„λ‘ κ°œμ„ ν–ˆμŠ΅λ‹ˆλ‹€.
- **ν…ŒμŠ€νŠΈ μΆ”κ°€**: λ‹€κ΅­μ–΄ 처리 둜직의 무결성을 κ²€μ¦ν•˜κΈ° μœ„ν•΄ `test_i18n.html` ν…ŒμŠ€νŠΈ νŒŒμΌμ„ μΆ”κ°€ν–ˆμŠ΅λ‹ˆλ‹€.
12 changes: 12 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -805,3 +805,15 @@ main:focus-visible {
.skip-link:focus-visible {
top: 0;
}

/* Accessibility enhancements */
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}
Loading