# setTextColor

### Parameters

1. controlId - the id of the control to change the color
2. colorName - one of these colors: "default", "primary", "secondary", "success", "danger", "warning"

### Example Usages

*Set Color to "warning"*

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

*Set Color to default*

```javascript
   brixxApi.setTextColor("myControl");
```
