## lighten()


Lighten a base color by a relative amount.


Usage


``` python
lighten(
    base,
    amount=0.2,
)
```


## Parameters


`base: str`  
Base CSS color.

`amount: float = ``0.2`  
Fraction to lighten (0-1).


## Returns


`str`  
The lightened color.
