# Color

Color tokens define one single color, such as `#FFFFFF` .

### Example Token Payload

This is what the color payload looks like:

```javascript
{
  "id": string
  "name": string
  "description": string
  "tokenType": "Color"
  "origin": ItemOrigin | null
  "value": {
    "hex": string
    "r": int (0-255),
    "g": int (0-255),
    "b": int (0-255),
    "a": int (0-255),
    "referencedToken": Color | null
  }
}
```

### Associated functions

You can use the following functions to retrieve color tokens from your design system:

* [@ds.allTokens](https://supernova-developers.gitbook.io/supernova-dsm/function-list#ds-alltokens)
* [@ds.tokensByType](https://supernova-developers.gitbook.io/supernova-dsm/function-list#ds-tokensbytype) (with `"Color"`) attribute
* [@ds.tokensByGroupId](https://supernova-developers.gitbook.io/supernova-dsm/function-list#ds-tokensbygroupid)


---

# 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://supernova-developers.gitbook.io/supernova-dsm/design-system-data/tokens/colors.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.
