> For the complete documentation index, see [llms.txt](https://gebra-it.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gebra-it.gitbook.io/wiki/client-api-reference/functions/setbackgroundcolor.md).

# setBackgroundColor

Sets the background color of a control.

## Parameters

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

## Example Usages

### Set to warning

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

### Set to normal

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

### Return Values

Function does not explicitly produce return value.
