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 @@ -9,3 +9,7 @@
## 2026-06-25 - Fix Header Overlap
**Learning:** When using a sticky header, clicking anchor links can cause the target element to scroll under the header, hindering the user experience.
**Action:** Use `scroll-padding-top` on the `html` element with the height of the sticky header to ensure anchor links scroll to a position just below the header.

## 2024-07-03 - Improve color contrast for readability
**Learning:** Using the `--gold` variable for text on white/light backgrounds fails WCAG AA contrast standards (ratio ~2.18:1).
**Action:** Avoid `--gold` on white backgrounds and use higher-contrast alternatives like `--teal` to ensure accessibility and readability.
2 changes: 1 addition & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ h1 {
.dikw-grid span {
display: block;
margin-bottom: 38px;
color: var(--gold);
color: var(--teal);
font-size: 14px;
font-weight: 900;
}
Expand Down