/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 6803564977bf */ import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; /** * Accent color used for highlights and primary actions. */ export const DeploymentPortalAccentColor = { Blue: "blue", Purple: "purple", Green: "green", Orange: "orange", Pink: "pink", Slate: "slate", } as const; /** * Accent color used for highlights and primary actions. */ export type DeploymentPortalAccentColor = ClosedEnum< typeof DeploymentPortalAccentColor >; /** @internal */ export const DeploymentPortalAccentColor$inboundSchema: z.ZodEnum< typeof DeploymentPortalAccentColor > = z.enum(DeploymentPortalAccentColor); /** @internal */ export const DeploymentPortalAccentColor$outboundSchema: z.ZodEnum< typeof DeploymentPortalAccentColor > = DeploymentPortalAccentColor$inboundSchema;