# Toolbar Style in Angular Data Grid

The appearance of the toolbar in the [Angular Data Grid](https://www.syncfusion.com/angular-components/angular-data-grid) component can be customized using CSS. Here are examples for customizing the toolbar root element and toolbar button element.

## Customize the toolbar root element

The `.e-toolbar-items` class is used to style the toolbar root element.

```css
.e-grid .e-toolbar-items {
    background-color: #deecf9;
}
```

![Grid toolbar root element](../images/grid-toolbar-root-element.png)

## Customize the toolbar button element

The `.e-toolbar .e-btn` selector is used to style the toolbar button elements.

```css
.e-grid .e-toolbar .e-btn {
    background-color: #deecf9;
}
```

![Grid toolbar button element](../images/grid-toolbar-button-element.png)
