Is there a feature that makes the website icon adaptive to the bright and dark mode browser?

My icon is black, it just disapper in dark mode browser…

Can I upload two types of icon to adaptive different mode?

@Rayman If the theme you are using is providing this feature then sure you can upload for dark mode but if not then this can be done using custom code something like this that depends on your theme.

@media (prefers-color-scheme: dark {
    .header-icon {
        background: url(...);
    }
}