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

registryBaseColorSchema

const registryBaseColorSchema: z.ZodObject<{
inlineColors: z.ZodObject<{}, "strip", z.ZodTypeAny, {
light: Record<string, string>;
dark: Record<string, string>;
}
, {
light: Record<string, string>;
dark: Record<string, string>;
}
>
;
cssVars: z.ZodObject<{}, "strip", z.ZodTypeAny, {
theme?: Record<string, string> | undefined;
light?: Record<string, string> | undefined;
dark?: Record<string, string> | undefined;
}
, {
theme?: Record<string, string> | undefined;
light?: Record<string, string> | undefined;
dark?: Record<string, string> | undefined;
}
>
;
cssVarsV4: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {
theme?: Record<string, string> | undefined;
light?: Record<string, string> | undefined;
dark?: Record<string, string> | undefined;
}
, {
theme?: Record<string, string> | undefined;
light?: Record<string, string> | undefined;
dark?: Record<string, string> | undefined;
}
>
>
;
inlineColorsTemplate: z.ZodString;
cssVarsTemplate: z.ZodString;
}
, "strip", z.ZodTypeAny, {
cssVars: {
theme?: Record<string, string> | undefined;
light?: Record<string, string> | undefined;
dark?: Record<string, string> | undefined;
}
;
inlineColors: {
light: Record<string, string>;
dark: Record<string, string>;
}
;
inlineColorsTemplate: string;
cssVarsTemplate: string;
cssVarsV4?: {
theme?: Record<string, string> | undefined;
light?: Record<string, string> | undefined;
dark?: Record<string, string> | undefined;
}
| undefined;
}
, {
cssVars: {
theme?: Record<string, string> | undefined;
light?: Record<string, string> | undefined;
dark?: Record<string, string> | undefined;
}
;
inlineColors: {
light: Record<string, string>;
dark: Record<string, string>;
}
;
inlineColorsTemplate: string;
cssVarsTemplate: string;
cssVarsV4?: {
theme?: Record<string, string> | undefined;
light?: Record<string, string> | undefined;
dark?: Record<string, string> | undefined;
}
| undefined;
}
>
;