diff --git a/pycardium/modules/py/color.py b/pycardium/modules/py/color.py index fdf30fd527b0e73402a516b3889e7207419c2728..11aa37e53e1e2ee2e0a543468658484e0fc80c88 100644 --- a/pycardium/modules/py/color.py +++ b/pycardium/modules/py/color.py @@ -348,9 +348,9 @@ class Color(_ColorTuple): c = Color.from_hex(0xff0000) print(c) # #ff0000 - c.change_value(-0.25) + c.change_lightness(0.2) print(c) - # #800000 + # #ff6666 """ return self.__change_vlx(change, self.to_hsl, self.from_hsl)