Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateThemeData

import type { CreateThemeData } from "https://aws-api.deno.dev/v0.3/services/amplifyuibuilder.ts?docs=full";

Represents all of the information that is required to create a theme.

interface CreateThemeData {
name: string;
overrides?: ThemeValues[] | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
values: ThemeValues[];
}

§Properties

§
name: string
[src]

The name of the theme.

§
overrides?: ThemeValues[] | null
[src]

Describes the properties that can be overriden to customize an instance of the theme.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

One or more key-value pairs to use when tagging the theme data.

§

A list of key-value pairs that defines the properties of the theme.