From 22dd8ac5bbe51a2aa23a69305f20124ac928b26f Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 13 Apr 2026 15:16:41 +0200 Subject: [PATCH] auto-git: [change] src/runtime-three/runtime-project-time.ts --- src/runtime-three/runtime-project-time.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/runtime-three/runtime-project-time.ts b/src/runtime-three/runtime-project-time.ts index 0b57468d..218dc214 100644 --- a/src/runtime-three/runtime-project-time.ts +++ b/src/runtime-three/runtime-project-time.ts @@ -143,17 +143,6 @@ function formatHexColor(color: { r: number; g: number; b: number }): string { return `#${toHex(color.r)}${toHex(color.g)}${toHex(color.b)}`; } -function blendHexColors(leftHex: string, rightHex: string, amount: number): string { - const left = parseHexColor(leftHex); - const right = parseHexColor(rightHex); - - return formatHexColor({ - r: lerp(left.r, right.r, amount), - g: lerp(left.g, right.g, amount), - b: lerp(left.b, right.b, amount) - }); -} - function blendHexColorsByWeights( dayHex: string, dawnHex: string,