mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-07-15 18:02:05 +08:00
6adb63b915
date: 2026-06-04T09:49:56 master commit: c0ab3550eca2e9daf197c46b7e4b24aa9637cf2e
13 lines
435 B
Python
13 lines
435 B
Python
import pyray as rl
|
|
|
|
SIDE_PANEL_WIDTH = 60
|
|
|
|
|
|
def blend_colors(a: rl.Color, b: rl.Color, f: float) -> rl.Color:
|
|
h0, s0, v0 = (hsv0 := rl.color_to_hsv(a)).x, hsv0.y, hsv0.z
|
|
h1, s1, v1 = (hsv1 := rl.color_to_hsv(b)).x, hsv1.y, hsv1.z
|
|
dh = ((h1 - h0 + 180) % 360) - 180 # shortest hue delta
|
|
return rl.color_from_hsv((h0 + f * dh) % 360,
|
|
s0 + f * (s1 - s0),
|
|
v0 + f * (v1 - v0))
|