# Letter Spacing

You can set global letter spacing that will be inherited by all text content.

<pre class="language-js" data-title="vueless.config.{js,ts}"><code class="lang-js">export default {
  letterSpacing: 0.025, /* default -> 0 (em) */
}<a data-footnote-ref href="#user-content-fn-1">;</a>
</code></pre>

You can set any letter-spacing value in `em` units. We recommend using values between `-0.05em` and `0.1em` for optimal readability.

## Custom CSS variable

To implement letter spacing stylings, Vueless provides custom CSS variable, which applies directly to the `body` element. Feel free to use it in your components whenever you need consistent letter spacing across your project (if letter spacing for body will be overridden).

The variable:  `--vl-letter-spacing`

[^1]:


---

# Agent Instructions: 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:

```
GET https://docs.vueless.com/global-customization/letter-spacing.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
