> For the complete documentation index, see [llms.txt](https://docs.kumu.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kumu.io/frequently-asked-questions/how-do-i-change-font-color.md).

# How do I change font color?

There's multiple ways to change the color of the font on your map:

* Customize the default color for all fonts in your map
* Use Direct Decorations to color specific fonts
* Change font color in the Advanced Editor

## Change default font color

To change the color of all text in your map, use the following steps:

1. Click on the Settings button to open the Basic Editor on the right side
2. Click **Customize Defaults**
3. Scroll down to **Font Color** and choose the color there

*Note that changing the default font color of your map also changes the font color of your legend.*

## Change font color with Direct Decorations

[Direct Decorations](/guides/decorate/direct-decorations.md) are best used when wanting to change the font color of only one or a few elements in your map. To do so: hover over the element or connection whose font color you'd like to change so the edit pencil shows up. Click on the Pencil and then Click on the Text icon to change its color there.

![Direct Decorations Font Color](/files/IxVZke1XoZs7zRc780TM)

## Change font color in the Advanced Editor

By adding code to the Advanced Editor you can change font color driven by the data stored inside of your profiles.

For example, to change all fonts of element labels to blue, you can use:

```scss
element {
  font-color: blue;
}
```

Or use [hex codes](https://htmlcolorcodes.com/) to find more specific colors:

```scss
element {
  font-color: #3EF4B5;
}
```

Note that the code snippet above will only change the font size for elements, but will leave connections and loops at the default font size. For more information on how to change the `element` selector to something even more specific (for example, just the elements whose Element Type is "Organization"), see [our full guide on selectors](/guides/selectors.md).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.kumu.io/frequently-asked-questions/how-do-i-change-font-color.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
