.logo-dark { display: none; }

html[data-theme="gitea-dark"] .logo-light,
html[data-theme="dark"] .logo-light,
html.theme-arc-green .logo-light {
    display: none;
}

html[data-theme="gitea-dark"] .logo-dark,
html[data-theme="dark"] .logo-dark,
html.theme-arc-green .logo-dark {
    display: inline-block;
}

@media (prefers-color-scheme: dark) {
    html[data-theme="gitea-auto"] .logo-light,
    html.theme-auto .logo-light {
        display: none;
    }
    html[data-theme="gitea-auto"] .logo-dark,
    html.theme-auto .logo-dark {
        display: inline-block;
    }
}
