import { z } from 'zod';
import { standardConfigSchema } from './reusable/index.js';
import { themeSchema } from './themes.js';
export const almondConfigSchema = z.object(Object.assign({ theme: z.literal(themeSchema.enum.almond) }, standardConfigSchema));