# ThemeColors

> **Class** in `deepagents_cli`

📖 [View in docs](https://reference.langchain.com/python/deepagents-cli/theme/ThemeColors)

Complete set of semantic colors for one theme variant.

Every field must be a 7-character hex color string (e.g., `'#7AA2F7'`).

## Signature

```python
ThemeColors(
    self,
    primary: str,
    secondary: str,
    accent: str,
    panel: str,
    success: str,
    warning: str,
    error: str,
    muted: str,
    mode_bash: str,
    mode_command: str,
    skill: str,
    skill_hover: str,
    tool: str,
    tool_hover: str,
    foreground: str,
    background: str,
    surface: str,
)
```

## Constructors

```python
__init__(
    self,
    primary: str,
    secondary: str,
    accent: str,
    panel: str,
    success: str,
    warning: str,
    error: str,
    muted: str,
    mode_bash: str,
    mode_command: str,
    skill: str,
    skill_hover: str,
    tool: str,
    tool_hover: str,
    foreground: str,
    background: str,
    surface: str,
) -> None
```

| Name | Type |
|------|------|
| `primary` | `str` |
| `secondary` | `str` |
| `accent` | `str` |
| `panel` | `str` |
| `success` | `str` |
| `warning` | `str` |
| `error` | `str` |
| `muted` | `str` |
| `mode_bash` | `str` |
| `mode_command` | `str` |
| `skill` | `str` |
| `skill_hover` | `str` |
| `tool` | `str` |
| `tool_hover` | `str` |
| `foreground` | `str` |
| `background` | `str` |
| `surface` | `str` |


## Properties

- `primary`
- `secondary`
- `accent`
- `panel`
- `success`
- `warning`
- `error`
- `muted`
- `mode_bash`
- `mode_command`
- `skill`
- `skill_hover`
- `tool`
- `tool_hover`
- `foreground`
- `background`
- `surface`

## Methods

- [`merged()`](https://reference.langchain.com/python/deepagents-cli/theme/ThemeColors/merged)

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/829909166606f8a9d9571b00da725845bad08da7/libs/cli/deepagents_cli/theme.py#L238)