Skip to content

Commit

Permalink
fix: add theme colors in scheam.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
freepoi committed Mar 21, 2024
1 parent c2edca0 commit 7f2b8c6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions deploy/tools/envs-validator/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -522,6 +522,16 @@ const schema = yup
NEXT_PUBLIC_THEME_STATISTIC_BG_DARK_COLOR: yup.string().optional(),
NEXT_PUBLIC_THEME_STATISTIC_TEXT_DARK_COLOR: yup.string().optional(),
NEXT_PUBLIC_THEME_LINK_DARK_COLOR: yup.string().optional(),
NEXT_PUBLIC_THEME_LINK_HOVER_COLOR: yup.string().optional(),
NEXT_PUBLIC_THEME_LINK_HOVER_DARK_COLOR: yup.string().optional(),
NEXT_PUBLIC_THEME_TEXT_COLOR: yup.string().optional(),
NEXT_PUBLIC_THEME_TEXT_DARK_COLOR: yup.string().optional(),
NEXT_PUBLIC_THEME_TEXT_SECONDARY_COLOR: yup.string().optional(),
NEXT_PUBLIC_THEME_TEXT_SECONDARY_DARK_COLOR: yup.string().optional(),
NEXT_PUBLIC_THEME_ERROR_COLOR: yup.string().optional(),
NEXT_PUBLIC_THEME_ERROR_DARK_COLOR: yup.string().optional(),
NEXT_PUBLIC_THEME_DIVIDER_COLOR: yup.string().optional(),
NEXT_PUBLIC_THEME_DIVIDER_DARK_COLOR: yup.string().optional(),

// Misc
NEXT_PUBLIC_USE_NEXT_JS_PROXY: yup.boolean(),
Expand Down

0 comments on commit 7f2b8c6

Please sign in to comment.