Type Alias: ThemeOverride
ThemeOverride =
{ [Key in keyof ThemeConfig]?: PartialDeep<ThemeConfig[Key]> }
Defined in: shared/types/themeConfig.ts:464
Theme override configuration interface.
Remarksโ
Allows deep overrides of any theme section using type-fest's PartialDeep. Each top-level key mirrors ThemeConfig, and the nested structure can be partially specified without having to copy the full object tree.