Hello
I want to change the logo when my website changes to dark mode.
Means
What I want to do is: when my website is on light mode, its logo will be on black color and when it changes to dark mode, the logo will automatically be on white color.
/* Light, Logo will show dark color*/
#light .header-logo svg ellipse,
#light .header-logo svg path {
fill: var(--bg-dark)!important;
}
/* Dark, logo will show white color */
#dark .header-logo svg ellipse,
#dark .header-logo svg path {
/* if you dont want this color after that you can update var(--header-bg-color) to #fff */
fill: var(--header-bg-color)!important;
}