CoreConfigUpdate: Resolve<
    Omit<CoreConfig, "colorscheme"> & {
        colorscheme:
            | Partial<{ [key in keyof ColorScheme]: ColorScheme[key] | null }>
            | null;
    },
>

Type of objects that can be used to update the current configuration. It mainly allows to set colorscheme to null for resetting it back to the default color scheme.