Easiest way I could do that with zod was,
enum Colour {
red: 'Red',
blue: 'Blue',
}
const isValidColour: bool = z.nativeEnum(Colour).safeParse("Red").success; // true
const isValidColour: bool = z.nativeEnum(Colour).safeParse("Pink").success; // false