Merge pull request #53 from NewHappyRabbit/darkmode

Made the water color around islands to be lighter instead of darker
This commit is contained in:
evanpelle
2025-02-19 18:36:17 -08:00
committed by GitHub
+3 -3
View File
@@ -287,9 +287,9 @@ export const pastelThemeDark = new (class implements Theme {
}
if (gm.magnitude(tile) < 10) {
return colord({
r: Math.max(w.r - 10 + mag, 0),
g: Math.max(w.g - 10 + mag, 0),
b: Math.max(w.b - 10 + mag, 0),
r: Math.max(w.r + 9 - mag, 0),
g: Math.max(w.g + 9 - mag, 0),
b: Math.max(w.b + 9 - mag, 0),
});
}
return this.water;