Add support for custom light color palette (#2156)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Chenlei Hu
2025-01-04 18:53:47 -05:00
committed by GitHub
parent e46706777c
commit e65653c107
10 changed files with 70 additions and 29 deletions

View File

@@ -92,7 +92,8 @@ export const paletteSchema = z
.object({
id: z.string(),
name: z.string(),
colors: partialColorsSchema
colors: partialColorsSchema,
light_theme: z.boolean().optional()
})
.passthrough()