# Change heading color

This guide shows how to change the text color of headings within a section using the theme editor's built-in custom CSS field.

1. In the theme editor, navigate to the section you want to edit.
2. In the settings panel, scroll to the bottom and expand **Custom CSS**.
3. To apply the change across your entire storefront instead, navigate to **Theme settings > Custom CSS**.
4. Paste the following code into the input field and replace `#000000` with your desired hex color code. For example, `#000000` (black) could be changed to `#ffffff` (white).

```css
h3 { color: #000000; }
```
