Custom hamburger and busy indicator icon

Dear All
is it possible to customize hamburger icon and busy indicator for example change the color or size

if I put header color as white the hamburger and busy indicator icon is difficult to see

thanks

Not that I know of; there might be a push to replace templates with native Panel components.

Okay it might be possible if you set raw_css

Hi @ahuang11

thanks for your advise. I have used css for changing color hamburger icon as below:

#sidebar-button .pn-bar {
    background-color: #00008B; /* Dark blue color */
    transition: background-color 0.3s ease; /* Smooth color change on hover */
}

However still don’t get how to change color of busy indicator.

thank you

One way is to just invert the color perhaps:

filter: invert(100%);

More ideas css - How can I change the color of an 'svg' element? - Stack Overflow

thanks @ahuang11 for your advise