/*Write your custom style or CSS code here*/
html[data-bs-theme="light"] img.logo-img.light{
    display: inherit;
}
html[data-bs-theme="light"] img.logo-img.dark{
    display: none;
}
html[data-bs-theme="dark"] img.logo-img.light{
    display: none;
}
html[data-bs-theme="dark"] img.logo-img.dark{
    display: inherit;
}