Skip to content

Commit

Permalink
Merge pull request #10 from alt-research/fix/theme-color-schema.ts
Browse files Browse the repository at this point in the history
fix: add theme colors in scheam.ts
  • Loading branch information
antonio-altr authored Mar 21, 2024
2 parents c2edca0 + 7f2b8c6 commit c066543
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 c066543

Please sign in to comment.