diff --git a/index.html b/index.html
index 13fa34f..a461cbb 100644
--- a/index.html
+++ b/index.html
@@ -209,11 +209,11 @@ body { margin: 0; font: 13px/1.4 system-ui, sans-serif; background: #f5f5f5; col
PhenoCam
-
S2
-
Whittaker
+
S2
+
Whittaker
BtI
ItB
-
S3
+
S3
S3 smooth
@@ -836,11 +836,11 @@ function updatePhoto(dateStr) {
// ── GCC canvas ──
const SERIES = [
{ key: "phenocam", val: "gcc_90", color: "#2d7a3e", width: 2, dash: [] },
- { key: "s2", val: "gcc", color: "#bbb", width: 1, dash: [] },
- { key: "s2_whittaker",val: "gcc", color: "#444", width: 1.5, dash: [4,3] },
+ { key: "s2", val: "gcc", color: "#8a8f98", width: 1, dash: [] },
+ { key: "s2_whittaker",val: "gcc", color: "#7c3aed", width: 1.5, dash: [4,3] },
{ key: "bti", val: "gcc", color: "#0066cc", width: 1.5, dash: [] },
{ key: "itb", val: "gcc", color: "#cc6600", width: 1.5, dash: [] },
- { key: "s3", val: "gcc", color: "rgba(204,0,0,0.35)", width: 1, dash: [] },
+ { key: "s3", val: "gcc", color: "#d81b60", width: 1.2, dash: [] },
{ key: "s3_smooth", val: "gcc", color: "#cc0000", width: 1.5, dash: [] },
];
@@ -924,7 +924,7 @@ function drawGCC(sliderVal) {
if (!nearest) continue;
const vv = nearest[s.val];
const tx = cx + 4, ty = yOf(vv);
- ctx.fillStyle = s.color === "rgba(204,0,0,0.35)" ? "#cc0000" : s.color;
+ ctx.fillStyle = s.color;
ctx.fillText(vv.toFixed(3), tx, ty);
}
}