From cb6e1ffc382508c0d9fd706901ea06685c3e3d14 Mon Sep 17 00:00:00 2001 From: JISAUAY Date: Wed, 28 May 2025 09:17:27 -0500 Subject: [PATCH] some brightness change idk --- ctif.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ctif.py b/ctif.py index 6a663c2..d1ec342 100644 --- a/ctif.py +++ b/ctif.py @@ -214,8 +214,8 @@ class CTIF: # Make the bright colors brighter and the darks darker if v >= 0.5: v *= 1.5 - # else: - # v *= 0.5 + else: + v *= 1.25 r, g, b = colorsys.hsv_to_rgb(h, s, v)