From 1319ffe9ea52263e600ec51b3d111229c34a29c8 Mon Sep 17 00:00:00 2001 From: lelgenio Date: Thu, 4 Mar 2021 21:15:05 -0300 Subject: [PATCH] color: make default bright colors darker --- funcs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/funcs.py b/funcs.py index 63d07f0..75f0f25 100644 --- a/funcs.py +++ b/funcs.py @@ -78,7 +78,7 @@ def darker(arg1, amount=0.5): return color_mult(arg1, amount) -def lighter(arg1, amount=1.5): +def lighter(arg1, amount=1.25): return color_mult(arg1, amount) def as_hex(in_number):