# setBackgroundColor

### Parameters

1. controlId
2. colorName - use one of these: "default", "primary", "secondary", "success", "danger", "warning"

### Example Usages

*Set to warning*

```javascript
   brixxApi.setBackgroundColor("myControl", "warning");
```

*Set to normal*

```javascript
   brixxApi.setBackgroundColor("myControl", "default");
   brixxApi.setBackgroundColor("myControl"); //"default" is "default" ;)
```
