Incorrect scrollbar color in dark mode

WHAT IS THE BUG

The scrollbar uses light mode styling while dark mode is active.

HOW TO REPRODUCE IT

  1. Launch the app with dark mode enabled.

THE EXPECTED BEHAVIOR

The scrollbar to use dark mode styling.

SYSTEM INFORMATION

  • Device: MacBook Air 2020 (M1)
  • OS: Ventura 13.4.1 (c)
  • Anytype Version: v.0.33.3

This bug is the main reason I joined the community!

For the screenshot you posted, did you edit the HTML/CSS for the app or did you mock it up in image editor?

If it was CSS, would you mind changing what you modified so I can try to edit that locally? (glaring white is pretty distracting for me)

Thanks for reporting this!

EDIT: After posting, I seem to get the correct color to display by changing the width, but no idea how long the CSS change will persist:

::-webkit-scrollbar {
    width: 8px;
}

/* Modify existing one */
html.themeDark ::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.5);
}

Sorry for the confusion, but the correctly colored scrollbar is from another macOS app.

Ah, good call. Thanks for the reply! Hope they can get it fixed up at some point. Seems like a really great app so far.