Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developer.suki.ai/llms.txt

Use this file to discover all available pages before exploring further.

Overview

ThemeOptions type represents the configuration options for customizing the SDK appearance. The code snippet below shows how to use the ThemeOptions type to create a theme options object.
JavaScript
type ThemeOptions = {
  primary?: string;
  background?: string;
  secondaryBackground?: string;
  foreground?: string;
  warning?: string;
};

Properties

The ThemeOptions type is optional and will default to the Suki brand colors if not provided.
Last modified on March 23, 2026