> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.revvue.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.revvue.ai/_mcp/server.

# SurveyThemeInput

GraphQL input

Reference: https://docs.revvue.ai/api-reference/surveys/types/inputs/survey-theme-input

## Fields

- `fullOverwrite` — Overwrite all properties in the object.
- `id` — Unique id (UUID).
- `activeState` — Active state
- `tenantId` — Document tenant id.
- `name`
- `clientTheme`
- `casinoIcons` — Casino icons.

## Definition

```graphql
input SurveyThemeInput {
  fullOverwrite: Boolean
  id: UUID
  activeState: ActiveState
  tenantId: String
  name: String
  clientTheme: JSON
  casinoIcons: [String]
}
```