@ecp.eth/sdk / embed / EmbedConfigThemeColorsSchemaType
Type Alias: EmbedConfigThemeColorsSchemaType
type EmbedConfigThemeColorsSchemaType = {
dark?: {
account-edit-link?: string;
background?: string;
border?: string;
border-focus?: string;
destructive?: string;
destructive-foreground?: string;
foreground?: string;
input?: string;
input-foreground?: string;
muted-foreground?: string;
primary?: string;
primary-foreground?: string;
ring?: string;
secondary?: string;
secondary-foreground?: string;
};
light?: {
account-edit-link?: string;
background?: string;
border?: string;
border-focus?: string;
destructive?: string;
destructive-foreground?: string;
foreground?: string;
input?: string;
input-foreground?: string;
muted-foreground?: string;
primary?: string;
primary-foreground?: string;
ring?: string;
secondary?: string;
secondary-foreground?: string;
};
};Defined in: packages/sdk/src/embed/schemas/index.ts:95
Type declaration
dark?
optional dark: {
account-edit-link?: string;
background?: string;
border?: string;
border-focus?: string;
destructive?: string;
destructive-foreground?: string;
foreground?: string;
input?: string;
input-foreground?: string;
muted-foreground?: string;
primary?: string;
primary-foreground?: string;
ring?: string;
secondary?: string;
secondary-foreground?: string;
};dark.account-edit-link?
optional account-edit-link: string;dark.background?
optional background: string;dark.border?
optional border: string;dark.border-focus?
optional border-focus: string;dark.destructive?
optional destructive: string;dark.destructive-foreground?
optional destructive-foreground: string;dark.foreground?
optional foreground: string;dark.input?
optional input: string;dark.input-foreground?
optional input-foreground: string;dark.muted-foreground?
optional muted-foreground: string;dark.primary?
optional primary: string;dark.primary-foreground?
optional primary-foreground: string;dark.ring?
optional ring: string;dark.secondary?
optional secondary: string;dark.secondary-foreground?
optional secondary-foreground: string;light?
optional light: {
account-edit-link?: string;
background?: string;
border?: string;
border-focus?: string;
destructive?: string;
destructive-foreground?: string;
foreground?: string;
input?: string;
input-foreground?: string;
muted-foreground?: string;
primary?: string;
primary-foreground?: string;
ring?: string;
secondary?: string;
secondary-foreground?: string;
};light.account-edit-link?
optional account-edit-link: string;light.background?
optional background: string;light.border?
optional border: string;light.border-focus?
optional border-focus: string;light.destructive?
optional destructive: string;light.destructive-foreground?
optional destructive-foreground: string;light.foreground?
optional foreground: string;light.input?
optional input: string;light.input-foreground?
optional input-foreground: string;light.muted-foreground?
optional muted-foreground: string;light.primary?
optional primary: string;light.primary-foreground?
optional primary-foreground: string;light.ring?
optional ring: string;light.secondary?
optional secondary: string;light.secondary-foreground?
optional secondary-foreground: string;