From 0f53b5b7e9c6bcdd6f96c89fa3fe4b1f3974f61d Mon Sep 17 00:00:00 2001 From: lelgenio Date: Sun, 21 Feb 2021 23:18:51 -0300 Subject: [PATCH] colors: make darker()/lighter() be 50% stronger --- funcs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/funcs.py b/funcs.py index 249c6e4..63d07f0 100644 --- a/funcs.py +++ b/funcs.py @@ -74,11 +74,11 @@ def color_mult(e: str, amount: float): # Filters #################################################################### -def darker(arg1, amount=0.75): +def darker(arg1, amount=0.5): return color_mult(arg1, amount) -def lighter(arg1, amount=1.25): +def lighter(arg1, amount=1.5): return color_mult(arg1, amount) def as_hex(in_number):