feat: implement section-based color coding

- Add CSS variables for section colors (CSS violet, HTML raspberry, Tailwind cyan)
- Set data-section attribute on body based on current route
- Color code header nav links, logo, reference nav, topic links
- Color code CodeMirror editor cursor/selection
- Color code task instruction bubble
- Add reference page footer
- Section pages, lessons, and references all use matching colors
This commit is contained in:
2026-01-16 03:50:01 +01:00
parent 6d05a81e99
commit 34958b11b4
3 changed files with 230 additions and 4 deletions

View File

@@ -5,6 +5,12 @@
--primary-light: #8a77b5;
--primary-dark: #3b2e63;
/* Section colors (default to primary) */
--section-color: var(--primary-color);
--section-color-light: var(--primary-light);
--section-color-dark: var(--primary-dark);
--section-color-rgb: 94, 75, 139;
/* Secondary colors */
--secondary-color: #444444;
--secondary-dark: #222222;
@@ -2149,7 +2155,7 @@ input:checked + .toggle-slider::before {
gap: 0.5rem;
margin-top: 1.25rem;
padding: 0.75rem 1.5rem;
background: var(--primary-color);
background: var(--section-color, var(--primary-color));
color: white;
text-decoration: none;
border-radius: var(--border-radius-md);
@@ -2163,7 +2169,7 @@ input:checked + .toggle-slider::before {
}
.topic-link:hover {
background: var(--primary-dark);
background: var(--section-color-dark, var(--primary-dark));
transform: translateY(-1px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
@@ -2187,7 +2193,7 @@ input:checked + .toggle-slider::before {
}
.topic-ref:hover {
color: var(--primary-color);
color: var(--section-color, var(--primary-color));
text-decoration: underline;
}
@@ -2199,7 +2205,7 @@ input:checked + .toggle-slider::before {
}
.section-see-also a {
color: var(--primary-color);
color: var(--section-color, var(--primary-color));
text-decoration: none;
}
@@ -2840,3 +2846,194 @@ input:checked + .toggle-slider::before {
direction: ltr;
text-align: left;
}
/* ================= SECTION COLOR CODING ================= */
/* CSS Section - Violet */
[data-section="css"] {
--section-color: #7c4dff;
--section-color-light: #a47fff;
--section-color-dark: #5c35cc;
--section-color-rgb: 124, 77, 255;
}
/* HTML Section - Raspberry */
[data-section="html"] {
--section-color: #e91e63;
--section-color-light: #f06292;
--section-color-dark: #c2185b;
--section-color-rgb: 233, 30, 99;
}
/* Tailwind Section - Cyan */
[data-section="tailwind"] {
--section-color: #00bcd4;
--section-color-light: #4dd0e1;
--section-color-dark: #0097a7;
--section-color-rgb: 0, 188, 212;
}
/* Apply section colors to nav links */
.nav-link[data-section="css"] {
color: #7c4dff;
}
.nav-link[data-section="html"] {
color: #e91e63;
}
.nav-link[data-section="tailwind"] {
color: #00bcd4;
}
.nav-link[data-section="css"]:hover,
.nav-link[data-section="css"].active {
background: rgba(124, 77, 255, 0.1);
color: #5c35cc;
}
.nav-link[data-section="html"]:hover,
.nav-link[data-section="html"].active {
background: rgba(233, 30, 99, 0.1);
color: #c2185b;
}
.nav-link[data-section="tailwind"]:hover,
.nav-link[data-section="tailwind"].active {
background: rgba(0, 188, 212, 0.1);
color: #0097a7;
}
/* Logo color coding based on section */
[data-section="css"] .code-text {
color: #7c4dff;
}
[data-section="html"] .code-text {
color: #e91e63;
}
[data-section="tailwind"] .code-text {
color: #00bcd4;
}
/* Reference nav link colors */
.ref-nav-link[data-ref="css"],
.ref-nav-link[data-ref="selectors"],
.ref-nav-link[data-ref="flexbox"],
.ref-nav-link[data-ref="grid"] {
color: #7c4dff;
}
.ref-nav-link[data-ref="css"]:hover,
.ref-nav-link[data-ref="css"].active,
.ref-nav-link[data-ref="selectors"]:hover,
.ref-nav-link[data-ref="selectors"].active,
.ref-nav-link[data-ref="flexbox"]:hover,
.ref-nav-link[data-ref="flexbox"].active,
.ref-nav-link[data-ref="grid"]:hover,
.ref-nav-link[data-ref="grid"].active {
background: rgba(124, 77, 255, 0.15);
color: #5c35cc;
}
.ref-nav-link[data-ref="html"] {
color: #e91e63;
}
.ref-nav-link[data-ref="html"]:hover,
.ref-nav-link[data-ref="html"].active {
background: rgba(233, 30, 99, 0.15);
color: #c2185b;
}
/* CodeMirror section color overrides */
[data-section="css"] .cm-content {
caret-color: #7c4dff;
}
[data-section="css"] .cm-cursor,
[data-section="css"] .cm-dropCursor {
border-left-color: #7c4dff !important;
}
[data-section="css"] .cm-searchMatch {
outline-color: #7c4dff;
}
[data-section="css"] .cm-searchMatch.cm-searchMatch-selected {
background-color: rgba(124, 77, 255, 0.3);
}
[data-section="html"] .cm-content {
caret-color: #e91e63;
}
[data-section="html"] .cm-cursor,
[data-section="html"] .cm-dropCursor {
border-left-color: #e91e63 !important;
}
[data-section="html"] .cm-searchMatch {
outline-color: #e91e63;
}
[data-section="html"] .cm-searchMatch.cm-searchMatch-selected {
background-color: rgba(233, 30, 99, 0.3);
}
[data-section="tailwind"] .cm-content {
caret-color: #00bcd4;
}
[data-section="tailwind"] .cm-cursor,
[data-section="tailwind"] .cm-dropCursor {
border-left-color: #00bcd4 !important;
}
[data-section="tailwind"] .cm-searchMatch {
outline-color: #00bcd4;
}
[data-section="tailwind"] .cm-searchMatch.cm-searchMatch-selected {
background-color: rgba(0, 188, 212, 0.3);
}
/* Task instruction bubble section colors */
[data-section="css"] .task-instruction {
background: rgba(124, 77, 255, 0.9);
}
[data-section="html"] .task-instruction {
background: rgba(233, 30, 99, 0.9);
}
[data-section="tailwind"] .task-instruction {
background: rgba(0, 188, 212, 0.9);
}
/* Section page header colors */
[data-section="css"] .section-hero h1 {
color: #7c4dff;
}
[data-section="html"] .section-hero h1 {
color: #e91e63;
}
[data-section="tailwind"] .section-hero h1 {
color: #00bcd4;
}
/* Reference footer */
.reference-footer {
text-align: center;
padding: 2rem 1rem;
margin-top: 3rem;
border-top: 1px solid var(--border-color);
color: var(--light-text);
font-size: 0.9rem;
}
.reference-footer a {
color: var(--section-color, var(--primary-color));
}