color: make default bright colors darker

This commit is contained in:
lelgenio 2021-03-04 21:15:05 -03:00
parent 11a6d2d954
commit 1319ffe9ea
1 changed files with 1 additions and 1 deletions

View File

@ -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):