# CMS_SetBottomColor

> Sets the bottom color of the balloon message when using alternative color scheme.

Source: https://docs.capaone.com/capainstaller/vb-scripting-library/cms-functions/cms-setbottomcolor/  
Product: CapaInstaller — a separate CapaSystems product; do not apply this page to any other.

### Description

Sets the bottom color of the balloon message when using alternative color scheme

### Syntax

CMS_SetBottomColor(sColorHtmlValue) as Boolean

### Parameters

#### sColorHtmlValue (String)

Color Hex value. For more information on Color HEX [click here](http://www.w3schools.com/html/html_colors.asp)

### Example

**VBScript**

```vb
If bStatus Then bStatus = CMS_SetTopColor("#E8E8E8")
If bStatus Then bStatus = CMS_SetBottomColor("#D0D0D0")
If bStatus Then bStatus = CMS_SetBorderColor("#505050")
If bStatus Then bStatus = CMS_SetTextColor("#000000")
```

[Scripting Guidelines](/capainstaller/vb-scripting-library/scripting-guidelines/)

### Related functions

[CMS Functions](/capainstaller/vb-scripting-library/cms-functions/) [Constants](/capainstaller/vb-scripting-library/addendum/constants/) [Package Property](/capainstaller/vb-scripting-library/addendum/package-property/) [Variables](/capainstaller/vb-scripting-library/addendum/variables/) [Business Unit support](/capainstaller/vb-scripting-library/addendum/business-unit-support/)
