## blend()


Blend two colors together.


Usage


``` python
blend(
    c1,
    c2,
)
```


## Parameters


`c1: str`  
The first color.

`c2: str`  
The second color.


## Returns


`str`  
The blended color description.


## Examples

``` python
>>> blend("red", "blue")
```

'red-blue'
