Color: ZodObject<
{
hex: ZodOptional<ZodString>;
id: $ZodBranded<ZodNumber, "ColorId", "out">;
name: ZodString;
strands: ZodArray<
ZodObject<
{
brand: ZodEnum<
{
Anchor: "Anchor";
Appletons: "Appletons";
Cosmo: "Cosmo";
DMC: "DMC";
"J&P Coats": "J&P Coats";
Kreinik: "Kreinik";
Madeira: "Madeira";
Presencia: "Presencia";
Sullivans: "Sullivans";
Unbranded: "Unbranded";
},
>;
code: ZodString;
hex: ZodOptional<ZodString>;
name: ZodString;
strandCount: ZodDefault<ZodNumber>;
},
$strip,
>,
>;
symbol: ZodString;
},
$strip,
>
A color used in a pattern, made of one or more strands of floss (which may differ from each other to describe a blended color).
hexis the authoritative color to render;strandsdescribe the floss used to achieve it.