Skip to main content

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.