> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cloud.coinbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Flattened

```ts theme={null}
type Flattened<T> = { [K in KebabCasePaths<T>]: string };
```

A flattened representation of the Tokens type, where keys are
kebab-cased paths and all values are strings.

## Type Parameters

| Type Parameter                               |
| -------------------------------------------- |
| `T` *extends* `Record`\<`string`, `unknown`> |

## Example

```ts theme={null}
const themeOverrides: Partial<Flattened<typeof tokens>> = {
  'colors-brand-primary': string;
  'fontFamily-sans': string;
}
```
